From b831f1899aa699289bb4b790202e20bd49986665 Mon Sep 17 00:00:00 2001 From: ji-xuepeng Date: Sun, 10 Jul 2016 00:05:09 +0800 Subject: [PATCH] remove unused LOG This is to remove unused LOG to keep code clean. Change-Id: I60706c20fff4c82761be21cf2487c03a69160c41 --- neutronclient/common/clientmanager.py | 5 ----- neutronclient/common/serializer.py | 3 --- 2 files changed, 8 deletions(-) diff --git a/neutronclient/common/clientmanager.py b/neutronclient/common/clientmanager.py index b79ee5b..56d3d3c 100644 --- a/neutronclient/common/clientmanager.py +++ b/neutronclient/common/clientmanager.py @@ -17,17 +17,12 @@ """Manage access to the clients, including authenticating when needed. """ -import logging - import debtcollector.renames from neutronclient import client from neutronclient.neutron import client as neutron_client -LOG = logging.getLogger(__name__) - - class ClientCache(object): """Descriptor class for caching created client handles.""" diff --git a/neutronclient/common/serializer.py b/neutronclient/common/serializer.py index 828e17f..fdf7677 100644 --- a/neutronclient/common/serializer.py +++ b/neutronclient/common/serializer.py @@ -13,15 +13,12 @@ # License for the specific language governing permissions and limitations # under the License. -import logging - from oslo_serialization import jsonutils import six from neutronclient._i18n import _ from neutronclient.common import exceptions as exception -LOG = logging.getLogger(__name__) if six.PY3: long = int