Skip to content

Commit

Permalink
exception logging
Browse files Browse the repository at this point in the history
  • Loading branch information
PietroPasotti committed Feb 7, 2024
1 parent 2faa3ec commit eb2feee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion interface_tester/plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -328,7 +328,7 @@ def run(self) -> bool:
with tester_context(ctx):
test_fn()
except Exception as e:
logger.error(f"Interface tester plugin failed with {e}", exc_info=True)
logger.exception(f"Interface tester plugin failed with {e}")

if self._RAISE_IMMEDIATELY:
raise e
Expand Down

0 comments on commit eb2feee

Please sign in to comment.