From 8d278a6d7451f82997eb7eb051a1da3b57bbd561 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Henning=20Schulze=20Ei=C3=9Fing?= Date: Fri, 11 Oct 2024 12:29:36 +0200 Subject: [PATCH] Set logging to info when setting up the context --- fuse/context.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/fuse/context.py b/fuse/context.py index 6d687197..17097053 100644 --- a/fuse/context.py +++ b/fuse/context.py @@ -135,6 +135,9 @@ def full_chain_context( ): """Function to create a fuse full chain simulation context.""" + # Lets go for info level logging when working with fuse + log.setLevel("INFO") + if corrections_run_id is None: raise ValueError("Specify a corrections_run_id to load the corrections") if (corrections_version is None) & (not run_without_proper_corrections):