#371 LOW: Logger message missing f-string prefix

closed low Created 2025-12-11 21:40 · Updated 2025-12-12 14:48

Description

Edit
## Issue In engine/orchestrator.py:577, logger message uses wrong format string: ```python logger.exception('Task {task_name} failed with error: ') # Missing f prefix ``` ## Impact Log message won't include actual task name. ## Location engine/orchestrator.py:577 ## Fix Change to: logger.exception(f'Task {task_name} failed with error: ')

Comments

Loading comments...

Context

Loading context...

Audit History

View All
Loading audit history...