From f43d3584c5a9e7d1e13ee7ccbcdadb71c46d8ccd Mon Sep 17 00:00:00 2001 From: Qixiang Wan Date: Thu, 2 Mar 2017 11:46:33 +0800 Subject: [PATCH] Remove one line of log print The line of log printing can result in "No handlers could be found for logger" warning in quiet mode when custom paths module is enabled, because file handler is setup after that, since this line is only printed to screen (when pungi-koji is not ran in quiet mode) and doesn't contain important info, it doesn't hurt to remove it. Signed-off-by: Qixiang Wan --- pungi/paths.py | 1 - 1 file changed, 1 deletion(-) diff --git a/pungi/paths.py b/pungi/paths.py index 39db9569..0919ac54 100644 --- a/pungi/paths.py +++ b/pungi/paths.py @@ -51,7 +51,6 @@ class Paths(object): paths_module_name = compose.conf.get("paths_module") if paths_module_name: # custom paths - compose.log_info("Using custom paths from module %s" % paths_module_name) paths_module = __import__(paths_module_name, globals(), locals(), ["LogPaths", "WorkPaths", "ComposePaths"]) self.compose = paths_module.ComposePaths(compose) self.log = paths_module.LogPaths(compose)