We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Using the default LOG_LEVEL "info", the log contains 4 lines per (Cron) execution even though nothing out of the ordinary happened:
[timestamp] INF Cron triggered [timestamp] INF Found 123 image(s) to analyze provider=docker [timestamp] INF Jobs completed added=0 failed=0 skipped=0 unchanged=123 updated=0 [timestamp] INF Next run in 6 hours 2 seconds ([timestamp])
Setting the LOG_LEVEL to "warn" is undesirable because that would disable "info" output for updated images:
[timestamp] INF Cron triggered [timestamp] INF Found 123 image(s) to analyze provider=docker [timestamp] INF Image update found image=docker.io/hello-world:latest provider=docker [timestamp] INF Jobs completed added=0 failed=0 skipped=0 unchanged=122 updated=1 [timestamp] INF Next run in 5 hours 59 minutes ([timestamp])
Suggestion:
Demote outputs from "info" to "debug" (or introduce intermediate level "verbose") that contain little valuable information:
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Description
Using the default LOG_LEVEL "info", the log contains 4 lines per (Cron) execution even though nothing out of the ordinary happened:
Setting the LOG_LEVEL to "warn" is undesirable because that would disable "info" output for updated images:
Suggestion:
Demote outputs from "info" to "debug" (or introduce intermediate level "verbose") that contain little valuable information:
The text was updated successfully, but these errors were encountered: