Skip to content

Commit

Permalink
adding exception logging
Browse files Browse the repository at this point in the history
  • Loading branch information
matthewghgriffiths committed Apr 18, 2024
1 parent db5ac59 commit 777bc7d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rowing/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -779,7 +779,7 @@ def new_func(*args, **kwargs):
try:
exc = errorq.get(block=False)
logger.error(exc, exc_info=True)
# logger.exception(traceback.format_exc())
traceback.print_exc(exc)
raise exc
except queue.Empty:
return q.get()
Expand Down

0 comments on commit 777bc7d

Please sign in to comment.