Skip to content

Commit 45f764b

Browse files
committed
Print stack traces for exit requests in debug level instead of debug2
1 parent 47ab768 commit 45f764b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

reframe/frontend/cli.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1662,8 +1662,8 @@ def module_unuse(*paths):
16621662
printer.error(message)
16631663

16641664
if errors.is_exit_request(*exc_info):
1665-
# Print stack traces for exit requests only when TOO verbose
1666-
printer.debug2(tb)
1665+
# Print stack traces for exit requests when debugging
1666+
printer.debug(tb)
16671667
elif errors.is_severe(*exc_info):
16681668
printer.error(tb)
16691669
else:

0 commit comments

Comments
 (0)