Use LOG.exception instead of logging.exception

Fix a typo in nova-all where logging.exception was used instead of
LOG.exception like the rest of the code uses

Change-Id: I6f88014e1c5d87a9b84bb2ac833931a93aaf96c0
This commit is contained in:
Johannes Erdfelt 2012-06-28 04:19:15 +00:00
parent d537f641c7
commit 829832bc7b

View File

@ -60,7 +60,7 @@ if __name__ == '__main__':
try:
servers.append(service.WSGIService(api))
except (Exception, SystemExit):
logging.exception(_('Failed to load %s') % '%s-api' % api)
LOG.exception(_('Failed to load %s') % '%s-api' % api)
for mod in [s3server, xvp_proxy]:
try: