Skip to content

Commit

Permalink
[pp:ugoira] include traceback in exception debug log (#5683)
Browse files Browse the repository at this point in the history
  • Loading branch information
mikf committed Jun 16, 2024
1 parent a1bb327 commit 4727ad6
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions gallery_dl/postprocessor/ugoira.py
Original file line number Diff line number Diff line change
Expand Up @@ -158,6 +158,7 @@ def convert(self, pathfmt):
except Exception as exc:
print()
self.log.error("%s: %s", exc.__class__.__name__, exc)
self.log.debug("", exc_info=True)
pathfmt.realpath = pathfmt.temppath
else:
if self.mtime:
Expand Down

0 comments on commit 4727ad6

Please sign in to comment.