Merge "Stop overriding CONF.default_log_levels per binary"

This commit is contained in:
Jenkins 2014-07-17 10:41:31 +00:00 committed by Gerrit Code Review
commit b6304d4f8d
4 changed files with 0 additions and 21 deletions

View File

@ -47,11 +47,6 @@ LOG = logging.getLogger('heat.api')
if __name__ == '__main__':
try:
cfg.CONF(project='heat', prog='heat-api')
cfg.CONF.default_log_levels = ['amqplib=WARN',
'qpid.messaging=INFO',
'keystone=INFO',
'eventlet.wsgi.server=WARN',
]
logging.setup('heat')
messaging.setup()

View File

@ -49,11 +49,6 @@ LOG = logging.getLogger('heat.api.cfn')
if __name__ == '__main__':
try:
cfg.CONF(project='heat', prog='heat-api-cfn')
cfg.CONF.default_log_levels = ['amqplib=WARN',
'qpid.messaging=INFO',
'keystone=INFO',
'eventlet.wsgi.server=WARN',
]
logging.setup('heat')
messaging.setup()

View File

@ -49,11 +49,6 @@ LOG = logging.getLogger('heat.api.cloudwatch')
if __name__ == '__main__':
try:
cfg.CONF(project='heat', prog='heat-api-cloudwatch')
cfg.CONF.default_log_levels = ['amqplib=WARN',
'qpid.messaging=INFO',
'keystone=INFO',
'eventlet.wsgi.server=WARN',
]
logging.setup('heat')
messaging.setup()

View File

@ -49,12 +49,6 @@ LOG = logging.getLogger('heat.engine')
if __name__ == '__main__':
cfg.CONF(project='heat', prog='heat-engine')
cfg.CONF.default_log_levels = ['amqplib=WARN',
'sqlalchemy=WARN',
'qpid.messaging=INFO',
'keystone=INFO',
'eventlet.wsgi.server=WARN',
]
logging.setup('heat')
messaging.setup()