From 295ef0614eb4bdbba685332cd636bc399bd8729c Mon Sep 17 00:00:00 2001 From: Hamza Ghandri Date: Tue, 24 Sep 2024 17:43:34 +0200 Subject: [PATCH] Change to second unit instead of millisecond --- python/src/multi_agent_orchestrator/utils/logger.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/src/multi_agent_orchestrator/utils/logger.py b/python/src/multi_agent_orchestrator/utils/logger.py index 17fe6a0..e463178 100644 --- a/python/src/multi_agent_orchestrator/utils/logger.py +++ b/python/src/multi_agent_orchestrator/utils/logger.py @@ -86,5 +86,5 @@ def print_execution_times(self, execution_times: Dict[str, float]) -> None: Logger.logger.info('> - None -') else: for timer_name, duration in execution_times.items(): - Logger.logger.info(f"> {timer_name}: {duration}ms") + Logger.logger.info(f"> {timer_name}: {duration}s") Logger.logger.info('')