mirror of
https://github.com/verdaccio/verdaccio.git
synced 2025-02-17 23:45:29 -05:00
31 lines
1.6 KiB
Markdown
31 lines
1.6 KiB
Markdown
|
---
|
||
|
id: logger
|
||
|
title: "Logger"
|
||
|
---
|
||
|
|
||
|
As with any web application, Verdaccio has a customisable built-in logger. You can define multiple types of outputs.
|
||
|
|
||
|
```yaml
|
||
|
# console output
|
||
|
logs: { type: stdout, format: pretty, level: http }
|
||
|
```
|
||
|
|
||
|
or file output.
|
||
|
|
||
|
```yaml
|
||
|
# file output
|
||
|
logs: { type: file, path: verdaccio.log, level: info }
|
||
|
```
|
||
|
|
||
|
> Verdaccio 5 does not support rotation file anymore, [here more details](https://verdaccio.org/blog/2021/04/14/verdaccio-5-migration-guide#pinojs-is-the-new-logger).
|
||
|
|
||
|
Use `SIGUSR2` to notify the application, the log-file was rotated and it needs to reopen it. Note: Rotating log stream is not supported in cluster mode. [See here](https://github.com/trentm/node-bunyan#stream-type-rotating-file)
|
||
|
|
||
|
### Cấu hình
|
||
|
|
||
|
| Thuộc tính | Loại | Yêu cầu | Ví dụ | Hỗ trợ | Miêu tả |
|
||
|
| ---------- | ----- | ------- | ---------------------------------------------- | ------ | --------------------------------------- |
|
||
|
| type | chuỗi | Không | [stdout, file] | tất cả | xác định đầu ra |
|
||
|
| path | chuỗi | Không | verdaccio.log | tất cả | nếu là tệp, hãy xác định vị trí của tệp |
|
||
|
| format | chuỗi | Không | [pretty, pretty-timestamped] | tất cả | định dạng đầu ra |
|
||
|
| level | chuỗi | Không | [fatal, error, warn, http, info, debug, trace] | tất cả | mức độ chi tiết |
|