diff --git a/qlib/config.py b/qlib/config.py index 8fc7d778d7..4b4123643c 100644 --- a/qlib/config.py +++ b/qlib/config.py @@ -172,6 +172,9 @@ def register_from_C(self, config, skip_register=True): } }, "loggers": {"qlib": {"level": logging.DEBUG, "handlers": ["console"]}}, + # To let qlib work with other packages, we shouldn't disable existing loggers. + # Note that this param is default to True according to the documentation of logging. + "disable_existing_loggers": False, }, # Default config for experiment manager "exp_manager": {