fix: change telemetry logging level from exception to error (#5804)
fix: change telemetry logging from exception to error level
This commit is contained in:
parent
bf57f058c7
commit
45f2bebc31
1 changed files with 1 additions and 1 deletions
|
|
@ -52,7 +52,7 @@ class TelemetryService(Service):
|
|||
try:
|
||||
await func(payload, path)
|
||||
except Exception: # noqa: BLE001
|
||||
logger.exception("Error sending telemetry data")
|
||||
logger.error("Error sending telemetry data")
|
||||
finally:
|
||||
self.telemetry_queue.task_done()
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue