Skip to content

Commit

Permalink
Lower logging priority (#4228)
Browse files Browse the repository at this point in the history
PR: https://forum.opnsense.org/index.php?topic=42759.0

See man syslog(3) and opnsense/core#7101

This log message is of no interest to anyone beyond debugging telemetry functionality.
  • Loading branch information
doktornotor authored Oct 31, 2024
1 parent 5c4e3a2 commit 30bf1fa
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@
# data collected, log and push
if row_count > 0 and max_timestamp is not None:
syslog.syslog(
syslog.LOG_NOTICE,
syslog.LOG_DEBUG,
'telemetry data collected %d records in %.2f seconds @%s' % (
row_count, time.time() - send_start_time, max_timestamp
)
Expand Down

0 comments on commit 30bf1fa

Please sign in to comment.