diff options
| author | Davanum Srinivas <davanum@gmail.com> | 2012-10-23 12:48:59 -0400 |
|---|---|---|
| committer | Davanum Srinivas <davanum@gmail.com> | 2012-10-23 12:50:06 -0400 |
| commit | 6b137d8bec08a170e06fc011637c620fe76cf90d (patch) | |
| tree | 779a04351ae24d651525792c5bad3f0209dcdb6d | |
| parent | 3fddbb2dffc50178cf9898aa2cce877c225b92d0 (diff) | |
| download | nova-6b137d8bec08a170e06fc011637c620fe76cf90d.tar.gz nova-6b137d8bec08a170e06fc011637c620fe76cf90d.tar.xz nova-6b137d8bec08a170e06fc011637c620fe76cf90d.zip | |
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
| -rw-r--r-- | nova/utils.py | 1 |
1 files changed, 0 insertions, 1 deletions
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): |
