Skip to content

Commit

Permalink
Merge pull request #212 from uw-it-aca/fix/log-error-exc-info
Browse files Browse the repository at this point in the history
logger error exception info
  • Loading branch information
mikeseibel authored Mar 7, 2024
2 parents 1f5bcd1 + 55618cb commit 9ec986d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/call_command.py
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ def run(self):
rv = int(str(ex))
except Exception as ex:
rv = -1
logger.error("exception: {}".format(ex))
logger.error("exception: {}".format(ex), exc_info=True)

finish = time.time()
duration = finish - start
Expand Down

0 comments on commit 9ec986d

Please sign in to comment.