diff options
author | Vishvananda Ishaya <vishvananda@gmail.com> | 2011-02-23 10:29:54 -0800 |
---|---|---|
committer | Vishvananda Ishaya <vishvananda@gmail.com> | 2011-02-23 10:29:54 -0800 |
commit | e7f2a1663526c26903fb0605533d10ca1e8a9428 (patch) | |
tree | 4829a4fea2ec5098fc7100b1aca14f87636e1bf3 /nova/utils.py | |
parent | 828e3ea3f29f57767a4e25ad40b275c886cb7968 (diff) | |
parent | 70bc1d4280065f6eba368187af126cebcb6b69bb (diff) | |
download | nova-e7f2a1663526c26903fb0605533d10ca1e8a9428.tar.gz nova-e7f2a1663526c26903fb0605533d10ca1e8a9428.tar.xz nova-e7f2a1663526c26903fb0605533d10ca1e8a9428.zip |
merged trunk
Diffstat (limited to 'nova/utils.py')
-rw-r--r-- | nova/utils.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nova/utils.py b/nova/utils.py index 42efa0008..2a3acf042 100644 --- a/nova/utils.py +++ b/nova/utils.py @@ -55,7 +55,7 @@ def import_class(import_str): __import__(mod_str) return getattr(sys.modules[mod_str], class_str) except (ImportError, ValueError, AttributeError), exc: - logging.debug(_('Inner Exception: %s'), exc) + LOG.debug(_('Inner Exception: %s'), exc) raise exception.NotFound(_('Class %s cannot be found') % class_str) |