Skip to content

Commit

Permalink
Log exceptions during command execution with their backtrace
Browse files Browse the repository at this point in the history
Signed-off-by: Dennis Schridde <[email protected]>
  • Loading branch information
Dennis Schridde authored and ryneeverett committed Dec 2, 2018
1 parent 4a38053 commit 30e0fb2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bugwarrior/command.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ def pull(dry_run, flavor, interactive, debug):
)
)
except RuntimeError as e:
log.critical("Aborted (%s)" % e)
log.exception("Aborted (%s)" % e)


@click.group()
Expand Down

0 comments on commit 30e0fb2

Please sign in to comment.