From 5db92a22244bfa2f128d029893d13cf58893ff8a Mon Sep 17 00:00:00 2001 From: Ha Van Tu Date: Wed, 24 Aug 2016 17:11:22 +0700 Subject: [PATCH] TrivialFix: Remove logging import unused This patch removes logging import unused in nova/network/__init__.py Change-Id: I9334d5742dff45ba3aa74e5607309fc011db3622 --- nova/network/__init__.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/nova/network/__init__.py b/nova/network/__init__.py index 3ce9a4f499..73835e2a9f 100644 --- a/nova/network/__init__.py +++ b/nova/network/__init__.py @@ -14,13 +14,10 @@ # License for the specific language governing permissions and limitations # under the License. -from oslo_log import log as logging from oslo_utils import importutils import nova.conf -LOG = logging.getLogger(__name__) - NOVA_NET_API = 'nova.network.api.API' NEUTRON_NET_API = 'nova.network.neutronv2.api.API'