Lower logging priority (#4228)

PR: https://forum.opnsense.org/index.php?topic=42759.0

See man syslog(3) and https://github.com/opnsense/core/issues/7101

This log message is of no interest to anyone beyond debugging telemetry functionality.
This commit is contained in:
doktornotor 2024-10-31 18:26:08 +01:00 committed by GitHub
parent 5c4e3a231f
commit 30bf1fa72f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -78,7 +78,7 @@ if not telemetry_state.is_running():
# 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
)