chore(lint): Use logging.exception instead of logging.error (#10415)

This commit is contained in:
Bowen Liang
2024-11-07 21:13:02 +08:00
committed by GitHub
parent dd5ffaf058
commit 574c4a264f
22 changed files with 31 additions and 30 deletions

View File

@@ -708,7 +708,7 @@ class TraceQueueManager:
trace_task.app_id = self.app_id
trace_manager_queue.put(trace_task)
except Exception as e:
logging.error(f"Error adding trace task: {e}")
logging.exception(f"Error adding trace task: {e}")
finally:
self.start_timer()
@@ -727,7 +727,7 @@ class TraceQueueManager:
if tasks:
self.send_to_celery(tasks)
except Exception as e:
logging.error(f"Error processing trace tasks: {e}")
logging.exception(f"Error processing trace tasks: {e}")
def start_timer(self):
global trace_manager_timer