diff options
author | Vishvananda Ishaya <vishvananda@gmail.com> | 2011-02-21 13:46:41 -0800 |
---|---|---|
committer | Vishvananda Ishaya <vishvananda@gmail.com> | 2011-02-21 13:46:41 -0800 |
commit | 29644fe5a9cf47ae33af31b848c0edc4567f3c09 (patch) | |
tree | 2c8bfed6bbbe20c7f1c305ef1df0bf00e9568f8a /nova/utils.py | |
parent | c7d83e26f7d6388857b4db4538602395b688aa7a (diff) | |
download | nova-29644fe5a9cf47ae33af31b848c0edc4567f3c09.tar.gz nova-29644fe5a9cf47ae33af31b848c0edc4567f3c09.tar.xz nova-29644fe5a9cf47ae33af31b848c0edc4567f3c09.zip |
switch to explicit call to logging.setup()
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 c2fd5f2ee..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: - LOG.info(_('Inner Exception: %s'), exc) + LOG.debug(_('Inner Exception: %s'), exc) raise exception.NotFound(_('Class %s cannot be found') % class_str) |