diff --git a/run_on_maap.py b/run_on_maap.py
index 2bbb389e5ca8ee5555850858d228e96af588528c..8962fde22bf075b9298ccbc06e99aae2d199e997 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",