From 7e3846cd6d5c6ec4b9b13d0eba58cdece78bb6ba Mon Sep 17 00:00:00 2001 From: Mike Karlesky Date: Fri, 3 May 2024 22:41:08 -0400 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20Fixed=20exception=20decorator?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lib/ceedling/test_invoker.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ceedling/test_invoker.rb b/lib/ceedling/test_invoker.rb index 076cc4e3..30ce2cce 100644 --- a/lib/ceedling/test_invoker.rb +++ b/lib/ceedling/test_invoker.rb @@ -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)