From 6b137d8bec08a170e06fc011637c620fe76cf90d Mon Sep 17 00:00:00 2001 From: Davanum Srinivas Date: Tue, 23 Oct 2012 12:48:59 -0400 Subject: Fix bad Log statement in nova-manage Remove the log statement per discussion in the bug report https://bugs.launchpad.net/nova/+bug/1018431/comments/3 Fixes bug 1018431 Change-Id: Ia6fe511ae23155de8b78689639b53a0d9ed1d051 --- nova/utils.py | 1 - 1 file changed, 1 deletion(-) diff --git a/nova/utils.py b/nova/utils.py index 015ff915a..c2fa6fc82 100644 --- a/nova/utils.py +++ b/nova/utils.py @@ -499,7 +499,6 @@ class LazyPluggable(object): fromlist = backend self.__backend = __import__(name, None, None, fromlist) - LOG.debug(_('backend %s'), self.__backend) return self.__backend def __getattr__(self, key): -- cgit