diff --git a/saltax/contexts.py b/saltax/contexts.py index c479178..f069172 100644 --- a/saltax/contexts.py +++ b/saltax/contexts.py @@ -9,7 +9,7 @@ from utilix import xent_collection -logging.basicConfig(handlers=[logging.StreamHandler()]) +logging.basicConfig(level=logging.INFO, handlers=[logging.StreamHandler()]) log = logging.getLogger("fuse.context") diff --git a/saltax/plugins/f_raw_records.py b/saltax/plugins/f_raw_records.py index 0155c87..9867c77 100644 --- a/saltax/plugins/f_raw_records.py +++ b/saltax/plugins/f_raw_records.py @@ -12,7 +12,7 @@ export, __all__ = strax.exporter() -logging.basicConfig(handlers=[logging.StreamHandler()]) +logging.basicConfig(level=logging.INFO, handlers=[logging.StreamHandler()]) log = logging.getLogger("fuse.detector_physics.csv_input") diff --git a/saltax/plugins/s_raw_records.py b/saltax/plugins/s_raw_records.py index 2282d0a..cc99cf8 100644 --- a/saltax/plugins/s_raw_records.py +++ b/saltax/plugins/s_raw_records.py @@ -12,7 +12,7 @@ ) export, __all__ = strax.exporter() -logging.basicConfig(handlers=[logging.StreamHandler()]) +logging.basicConfig(level=logging.INFO, handlers=[logging.StreamHandler()]) log = logging.getLogger("wfsim.interface") log.setLevel("WARNING")