Suppress urllib3.connection INFO level logging

The urllib3.connection library is generating INFO level log messages
for every HTTP connection made to other openstack services. This is not
helpful, so let's suppress them.

Change-Id: I00ba5fadf459a2e3b112f440ea0616c64758a8ad
This commit is contained in:
Devananda van der Veen 2015-03-18 08:17:02 -07:00
parent 0f1bb1bfb6
commit 08278c9e4a
1 changed files with 1 additions and 0 deletions

View File

@ -134,5 +134,6 @@ def prepare_service(argv=[]):
'neutronclient=WARN',
'glanceclient=WARN',
'ironic.openstack.common=WARN',
'urllib3.connectionpool=WARN',
])
log.setup('ironic')