get rid of debug print

This commit is contained in:
AI Christianson 2025-02-17 18:54:30 -05:00
parent 9b0027a922
commit 8a2f0efb99
1 changed files with 0 additions and 1 deletions

View File

@ -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"