From 9a9644659cfdeeb8e64e16d7b3f553220926d769 Mon Sep 17 00:00:00 2001 From: Zygo Blaxell Date: Fri, 14 Feb 2025 00:47:03 -0500 Subject: [PATCH] trace: clean up the formatting around top-level exception log messages Fewer newlines. More consistent application of the "TRACE:" prefix. All at the same log level. Signed-off-by: Zygo Blaxell --- src/bees.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bees.cc b/src/bees.cc index c447a99..bf58d25 100644 --- a/src/bees.cc +++ b/src/bees.cc @@ -741,7 +741,7 @@ bees_main(int argc, char *argv[]) BEESLOGDEBUG("exception (ignored): " << s); BEESCOUNT(exception_caught_silent); } else { - BEESLOGNOTICE("\n\nTRACE: *** EXCEPTION ***\n\t" << s << "\n***\n"); + BEESLOG(BEES_TRACE_LEVEL, "TRACE: EXCEPTION: " << s); BEESCOUNT(exception_caught); } });