getLogger should be called after logging is configured

logging needs to be setup properly before we try to log
something. Fixed one spot from logging->LOG

Fixes LP# 1161038

Change-Id: I87743cff9062e47c1d5e989c2c0c05c3921b65c7
This commit is contained in:
Davanum Srinivas 2013-03-27 15:17:44 -04:00
parent 4d0985ea85
commit 3a106f7e67

View File

@ -46,18 +46,18 @@ from cinder import service
from cinder import utils
LOG = logging.getLogger('cinder.all')
if __name__ == '__main__':
flags.parse_args(sys.argv)
logging.setup("cinder")
LOG = logging.getLogger('cinder.all')
utils.monkey_patch()
servers = []
# cinder-api
try:
servers.append(service.WSGIService('osapi_volume'))
except (Exception, SystemExit):
logging.exception(_('Failed to load %s') % '%s-api' % api)
LOG.exception(_('Failed to load osapi_volume'))
for binary in ['cinder-volume', 'cinder-scheduler']:
try: