From 7a221b13a5488bc8420185de052edde24c49525c Mon Sep 17 00:00:00 2001 From: Johannes Erdfelt Date: Thu, 28 Jun 2012 04:19:15 +0000 Subject: [PATCH] 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 --- bin/nova-all | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/nova-all b/bin/nova-all index 57e84b0d..5c0644b8 100755 --- a/bin/nova-all +++ b/bin/nova-all @@ -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: