From 885d0578715a6aef8ae988579797d2df40b415c0 Mon Sep 17 00:00:00 2001 From: Devananda van der Veen Date: Thu, 13 Mar 2014 11:54:05 -0700 Subject: [PATCH] Stop logging paramiko's DEBUG and INFO messages When ironic-conductor is run in debug mode with the SSH power driver, Paramiko logs spurious DEBUG and INFO messages constantly. There is already sufficient logging within the SSH power driver. This patch adds paramiko to the list of modules who should only be logged at or above a WARN level, even in debug mode. Change-Id: Iccdfebbdc344c33c8fc0ab81f3ab5a176cd43a17 --- ironic/common/service.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ironic/common/service.py b/ironic/common/service.py index a60cb9a094..dba16926a0 100644 --- a/ironic/common/service.py +++ b/ironic/common/service.py @@ -62,7 +62,8 @@ def prepare_service(argv=[]): 'keystoneclient=INFO', 'stevedore=INFO', 'eventlet.wsgi.server=WARN', - 'iso8601=WARN' + 'iso8601=WARN', + 'paramiko=WARN', ]) cfg.CONF(argv[1:], project='ironic') log.setup('ironic')