mirror of
https://github.com/verdaccio/verdaccio.git
synced 2025-02-17 23:45:29 -05:00
26 lines
1.7 KiB
Markdown
26 lines
1.7 KiB
Markdown
|
---
|
||
|
id: logger
|
||
|
title: "Logger"
|
||
|
---
|
||
|
Cũng như bất kỳ ứng dụng web nào, verdaccio có trình ghi nhật ký tích hợp tùy chỉnh. Bạn có thể lựa chọn nhiều loại đầu ra.
|
||
|
|
||
|
```yaml
|
||
|
logs:
|
||
|
# console output
|
||
|
- {type: stdout, format: pretty, level: http}
|
||
|
# file output
|
||
|
- {type: file, path: verdaccio.log, level: info}
|
||
|
# Rotating log stream. Options are passed directly to bunyan. See: https://github.com/trentm/node-bunyan#stream-type-rotating-file
|
||
|
- {type: rotating-file, format: json, path: /path/to/log.jsonl, level: http, options: {period: 1d}}
|
||
|
```
|
||
|
|
||
|
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 | string | No | [stdout, file] | all | xác định đầu ra |
|
||
|
| path | string | No | verdaccio.log | all | nếu là tệp, hãy xác định vị trí của tệp |
|
||
|
| format | string | No | [pretty, pretty-timestamped] | all | định dạng đầu ra |
|
||
|
| level | string | No | [fatal, error, warn, http, info, debug, trace] | all | mức độ chi tiết |
|