diff --git a/daemon/core/__init__.py b/daemon/core/__init__.py index 40ca3604..c847c8dc 100644 --- a/daemon/core/__init__.py +++ b/daemon/core/__init__.py @@ -2,6 +2,3 @@ import logging.config # setup default null handler logging.getLogger(__name__).addHandler(logging.NullHandler()) - -# disable paramiko logging -logging.getLogger("paramiko").setLevel(logging.WARNING) diff --git a/daemon/data/logging.conf b/daemon/data/logging.conf index a300b0db..f002e53b 100644 --- a/daemon/data/logging.conf +++ b/daemon/data/logging.conf @@ -14,6 +14,11 @@ } }, "loggers": { + "": { + "level": "WARNING", + "handlers": ["console"], + "propagate": false + }, "core": { "level": "INFO", "handlers": ["console"],