Skip to content

Commit

Permalink
Add explicit exc_info parameter for clarity
Browse files Browse the repository at this point in the history
  • Loading branch information
skyfenton committed Jan 17, 2025
1 parent ea1fae2 commit 0c12743
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mediabridge/data_processing/wiki_to_netflix.py
Original file line number Diff line number Diff line change
Expand Up @@ -297,7 +297,7 @@ def process(
except Exception as e:
# include fatal exceptions with traceback in logs
if ctx.obj and ctx.obj.log:
logging.exception("Uncaught exception")
logging.exception("Uncaught exception", exc_info=True)
raise e


Expand Down

0 comments on commit 0c12743

Please sign in to comment.