Skip to content

Commit

Permalink
go to INFO log-level as papermill logs EVERYTHING
Browse files Browse the repository at this point in the history
  • Loading branch information
mmaelicke committed Nov 14, 2024
1 parent 649b275 commit 54b6324
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/run.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@

# before running the notebook, we overwrite the papermill logger with the json2args logger
pm_logger = logging.getLogger('papermill')
pm_logger.setLevel(getattr(logging, os.environ.get('LOG_LEVEL', 'DEBUG')))
pm_logger.setLevel(getattr(logging, os.environ.get('LOG_LEVEL', 'INFO')))
pm_logger.handlers = logger.handlers

# run the notebook.
Expand Down

0 comments on commit 54b6324

Please sign in to comment.