Skip to content

Commit

Permalink
🐛 Fixed exception decorator
Browse files Browse the repository at this point in the history
  • Loading branch information
mkarlesky committed May 4, 2024
1 parent f9d5e02 commit 7e3846c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/ceedling/test_invoker.rb
Original file line number Diff line number Diff line change
Expand Up @@ -357,7 +357,7 @@ def setup_and_invoke(tests:, context:TEST_SYM, options:{})
# Runtime errors (parent is Exception) continue on up to be caught by Ruby itself.
rescue StandardError => e
@application.register_build_failure
@loginator.log("#{e.class} ==> #{e.message}", Verbosity::ERRORS)
@loginator.log( "#{e.class} ==> #{e.message}", Verbosity::ERRORS, LogLabels::EXCEPTION )

# Debug backtrace
@loginator.log("Backtrace ==>", Verbosity::DEBUG)
Expand Down

0 comments on commit 7e3846c

Please sign in to comment.