Skip to content

Commit

Permalink
error instead of critical
Browse files Browse the repository at this point in the history
  • Loading branch information
bh2smith committed Dec 10, 2024
1 parent 0091efd commit ca93e03
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ async def main(jobs: list[Job]) -> None:
try:
await completed_task
except Exception as e: # pylint: disable=broad-exception-caught
log.critical("Error in job execution: %s", str(e))
log.error("Error in job execution: %s", str(e))


if __name__ == "__main__":
Expand Down

0 comments on commit ca93e03

Please sign in to comment.