Skip to content

Commit

Permalink
Change to second unit instead of millisecond
Browse files Browse the repository at this point in the history
  • Loading branch information
hghandri authored Sep 24, 2024
1 parent cd7764f commit 295ef06
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/src/multi_agent_orchestrator/utils/logger.py
Original file line number Diff line number Diff line change
Expand Up @@ -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('')

0 comments on commit 295ef06

Please sign in to comment.