-
Notifications
You must be signed in to change notification settings - Fork 30
Open
Labels
Description
A number of the different log entries seem to be logged at LOGLEVEL "error" by default, for instance:
| if processed%1000 == 0 { |
These type of entries, which don't appear to be errors, but rather INFO level logigng:
"2025/08/09 10:32:55 ct-watcher.go:356: Processed 12188000 entries | Queue length: 14"
Show up in the logs as this if you wrap this server up in a container and run it in k8s, for instance:
{
insertId: "REDACTED"
labels: {6}
logName: "REDACTED"
payload: "textPayload"
receiveLocation: "REDACTED"
receiveTimestamp: "2025-08-09T10:32:55.753906272Z"
resource: {2}
severity: "ERROR"
textPayload: "2025/08/09 10:32:55 ct-watcher.go:356: Processed 12187000 entries | Queue length: 15"
timestamp: "2025-08-09T10:32:55.101944803Z"
traceSampled: false
}
there are obviously some that deserve to be ERROR level, and are correctly reflected:
https://mammoth2026h2.ct.sectigo.com: GetRawEntries() failed: got HTTP Status "400 Bad Request"
Any chance that the status updates about Processed numbers and Queue Length could be set at an INFO level? May try my hand at fixing it and submitting a PR in the coming days/weeks.