diff --git a/dpdl/logger_config.py b/dpdl/logger_config.py index 1f0c9b6..cecd0ca 100644 --- a/dpdl/logger_config.py +++ b/dpdl/logger_config.py @@ -4,6 +4,7 @@ def configure_logger() -> logging.Logger: log = logging.getLogger('dpdl') log.setLevel(logging.INFO) + log.propagate = False # create a stream handler for stdout handler = logging.StreamHandler(sys.stdout)