diff options
author | Stanislaw Pitucha <stanislaw.pitucha@hp.com> | 2013-04-10 13:26:12 +0000 |
---|---|---|
committer | Stanislaw Pitucha <stanislaw.pitucha@hp.com> | 2013-04-10 13:26:12 +0000 |
commit | 17ba935d9da2ff912196bb47f6856fb64db13247 (patch) | |
tree | f55579924661c2413b374f4f0aaaddea8a9574e5 /nova/compute | |
parent | a993b2b969bad0785aad02dc2a6f04ac0c675f8d (diff) | |
download | nova-17ba935d9da2ff912196bb47f6856fb64db13247.tar.gz nova-17ba935d9da2ff912196bb47f6856fb64db13247.tar.xz nova-17ba935d9da2ff912196bb47f6856fb64db13247.zip |
Remove unnecessary LOG initialisation
Remove a lot of getLogger lines and imports of logging in modules
which never use that functionality.
Change-Id: Icdaee2c540980412b000d02ebf1ec568dcf5b38a
Diffstat (limited to 'nova/compute')
-rw-r--r-- | nova/compute/cells_api.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/nova/compute/cells_api.py b/nova/compute/cells_api.py index 379c9fc7d..f5ded45ec 100644 --- a/nova/compute/cells_api.py +++ b/nova/compute/cells_api.py @@ -25,9 +25,6 @@ from nova.compute import rpcapi as compute_rpcapi from nova.compute import vm_states from nova import exception from nova.openstack.common import excutils -from nova.openstack.common import log as logging - -LOG = logging.getLogger(__name__) check_instance_state = compute_api.check_instance_state |