mirror of
https://github.com/opnsense/plugins.git
synced 2026-06-04 06:15:39 -04:00
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:
parent
5c4e3a231f
commit
30bf1fa72f
1 changed files with 1 additions and 1 deletions
|
|
@ -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
|
||||
)
|
||||
|
|
|
|||
Loading…
Reference in a new issue