Skip to content
Snippets Groups Projects
Unverified Commit 18e35bf4 authored by HonkingGoose's avatar HonkingGoose Committed by GitHub
Browse files

docs: explain log level numbers (#8704)

parent 8b0f0ab8
No related branches found
No related tags found
No related merge requests found
...@@ -421,3 +421,18 @@ spec: ...@@ -421,3 +421,18 @@ spec:
It's recommended to configure `LOG_LEVEL=debug` and `LOG_FORMAT=json` in environment if you are ingesting/parsing logs into another system. It's recommended to configure `LOG_LEVEL=debug` and `LOG_FORMAT=json` in environment if you are ingesting/parsing logs into another system.
Debug logging is usually necessary for any debugging, while JSON format will mean that the output is parseable. Debug logging is usually necessary for any debugging, while JSON format will mean that the output is parseable.
### About the log level numbers
When you use `LOG_LEVEL=debug` and `LOG_FORMAT=json`, Renovate uses numbers in the `level` field.
The logging level output is controlled by the Bunyan logging library.
| Level | Meaning |
| ----: | ------- |
| 10 | trace |
| 20 | debug |
| 30 | info |
| 40 | warn |
| 50 | error |
| 60 | fatal |
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment