Skip to content

Commit

Permalink
Remove leftover format spec in error log
Browse files Browse the repository at this point in the history
  • Loading branch information
manics committed Aug 1, 2022
1 parent a5d29b6 commit 72e1852
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion binderhub/builder.py
Original file line number Diff line number Diff line change
Expand Up @@ -457,7 +457,7 @@ def _check_result(future):
r = future.result()
app_log.debug("task completed: %s", r)
except Exception:
app_log.error("task failed: %s", exc_info=True)
app_log.error("task failed", exc_info=True)
done = True
failed = True
# TODO: Propagate error to front-end
Expand Down

0 comments on commit 72e1852

Please sign in to comment.