diff --git a/lib/ceedling/loginator.rb b/lib/ceedling/loginator.rb index 297bb681..7f3f1660 100644 --- a/lib/ceedling/loginator.rb +++ b/lib/ceedling/loginator.rb @@ -142,6 +142,10 @@ def format(string, verbosity, label, decorate) prepend = '🪲 ' when LogLabels::EXCEPTION prepend = '🧨 ' + when LogLabels::CONSTRUCT + prepend = '🚧 ' + when LogLabels::STOPWATCH + prepend = '⏱️ ' when LogLabels::SEGFAULT prepend = '☠️ ' when LogLabels::TITLE @@ -166,6 +170,7 @@ def format(string, verbosity, label, decorate) prepend += 'ERROR: ' when LogLabels::EXCEPTION prepend += 'EXCEPTION: ' + # Otherwise no headings for decorator-only messages end return prepend + string