fix: change telemetry logging level from exception to error (#5804)

fix: change telemetry logging from exception to error level
This commit is contained in:
Gabriel Luiz Freitas Almeida 2025-01-20 09:00:16 -03:00 committed by GitHub
commit 45f2bebc31
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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()