summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVishvananda Ishaya <vishvananda@yahoo.com>2010-09-09 03:20:56 -0700
committerVishvananda Ishaya <vishvananda@yahoo.com>2010-09-09 03:20:56 -0700
commit37a8ca37db8a51455faf9b4a3bead95c453e8183 (patch)
tree99952c2c79c62b318d1433da7e8035e4a3d68698
parent20656789e919f36733ac9fd0766a56a1c96d1e34 (diff)
logging for backend is now info instead of error
-rw-r--r--nova/utils.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/nova/utils.py b/nova/utils.py
index 3e4a3d94f..011a5cb09 100644
--- a/nova/utils.py
+++ b/nova/utils.py
@@ -196,7 +196,7 @@ class LazyPluggable(object):
fromlist = backend
self.__backend = __import__(name, None, None, fromlist)
- logging.error('backend %s', self.__backend)
+ logging.info('backend %s', self.__backend)
return self.__backend
def __getattr__(self, key):