From eaeda89278c13451f688384a8a5726e7e8056a92 Mon Sep 17 00:00:00 2001 From: Marshall Hallenbeck Date: Wed, 27 Mar 2024 07:54:23 -0400 Subject: [PATCH] change normal output from DEBUG to INFO --- nxc/logger.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nxc/logger.py b/nxc/logger.py index 8e580317..51862a69 100755 --- a/nxc/logger.py +++ b/nxc/logger.py @@ -18,7 +18,7 @@ def create_temp_logger(caller_frame, formatted_text, args, kwargs): temp_logger = logging.getLogger("temp") formatter = logging.Formatter("%(message)s", datefmt="[%X]") handler = SmartDebugRichHandler(formatter=formatter) - handler.handle(LogRecord(temp_logger.name, logging.DEBUG, caller_frame.f_code.co_filename, caller_frame.f_lineno, formatted_text, args, kwargs, caller_frame=caller_frame)) + handler.handle(LogRecord(temp_logger.name, logging.INFO, caller_frame.f_code.co_filename, caller_frame.f_lineno, formatted_text, args, kwargs, caller_frame=caller_frame)) class SmartDebugRichHandler(RichHandler):