diff options
| author | Johannes Erdfelt <johannes.erdfelt@rackspace.com> | 2012-06-28 04:19:15 +0000 |
|---|---|---|
| committer | Johannes Erdfelt <johannes.erdfelt@rackspace.com> | 2012-06-28 04:19:15 +0000 |
| commit | 829832bc7bfea94da061a8aff42ba7229ab23bdc (patch) | |
| tree | ba6cc9bd8268742c3d7921b29e441d5fdf4ee2f9 | |
| parent | d537f641c71fba1acd10a617eb804c15ac1cbd3b (diff) | |
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
| -rwxr-xr-x | bin/nova-all | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/nova-all b/bin/nova-all index 57e84b0dd..5c0644b8c 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: |
