refactor(ops): Optimize the iteration for filter_none_values and use logging.error to record logs when an exception occurs (#8461)

This commit is contained in:
zhuhao
2024-09-21 22:56:37 +08:00
committed by GitHub
parent 1a8dcae10e
commit 831c5a93af
3 changed files with 8 additions and 6 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.debug(f"Error adding trace task: {e}")
logging.error(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.debug(f"Error processing trace tasks: {e}")
logging.error(f"Error processing trace tasks: {e}")
def start_timer(self):
global trace_manager_timer