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
This commit is contained in:
Devananda van der Veen 2014-03-13 11:54:05 -07:00
parent 9e15b9c511
commit 885d057871

View File

@ -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')