From dbb6806f630bdb29e000f5baf4e79a69fb65f7f9 Mon Sep 17 00:00:00 2001 From: "Ian Grant (aider)" <ian.conway.grant@gmail.com> Date: Thu, 15 May 2025 17:10:39 -0400 Subject: [PATCH] fix: set logger and file handler level to INFO instead of DEBUG --- run_on_maap.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/run_on_maap.py b/run_on_maap.py index 2bbb389..8962fde 100644 --- a/run_on_maap.py +++ b/run_on_maap.py @@ -155,12 +155,12 @@ def main( # Set up logging with both file and console handlers logger = logging.getLogger() - logger.setLevel(logging.DEBUG) + logger.setLevel(logging.INFO) # File handler with timestamps file_handler = logging.FileHandler(filename=output_dir / "run.log", mode="w") - file_handler.setLevel(logging.DEBUG) + file_handler.setLevel(logging.INFO) file_handler.setFormatter( logging.Formatter("%(asctime)s - %(message)s", -- GitLab