From 37a8ca37db8a51455faf9b4a3bead95c453e8183 Mon Sep 17 00:00:00 2001 From: Vishvananda Ishaya Date: Thu, 9 Sep 2010 03:20:56 -0700 Subject: logging for backend is now info instead of error --- nova/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'nova/utils.py') 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): -- cgit