From 8a2f0efb99705016f404c7e95460df32e9e03dd7 Mon Sep 17 00:00:00 2001 From: AI Christianson Date: Mon, 17 Feb 2025 18:54:30 -0500 Subject: [PATCH] get rid of debug print --- ra_aid/logging_config.py | 1 - 1 file changed, 1 deletion(-) diff --git a/ra_aid/logging_config.py b/ra_aid/logging_config.py index ce248bd..ba4609f 100644 --- a/ra_aid/logging_config.py +++ b/ra_aid/logging_config.py @@ -44,7 +44,6 @@ def setup_logging(verbose: bool = False, pretty: bool = False) -> None: if pretty: handler = PrettyHandler() else: - print("USING STREAM HANDLER LOGGER") handler = logging.StreamHandler(sys.stdout) formatter = logging.Formatter( "%(asctime)s - %(name)s - %(levelname)s - %(message)s"