From 654ad24e3b94b7e4e066504d4b38f8e391accc0f Mon Sep 17 00:00:00 2001 From: ji-xuepeng Date: Sun, 10 Jul 2016 14:57:38 +0800 Subject: [PATCH] remove unused LOG This is to remove unused LOG to keep code clean Change-Id: Iba4e29892f3011356ce927f73ce9f418365df609 --- tackerclient/common/clientmanager.py | 5 ----- 1 file changed, 5 deletions(-) diff --git a/tackerclient/common/clientmanager.py b/tackerclient/common/clientmanager.py index ed94b0b9..dbaa6496 100644 --- a/tackerclient/common/clientmanager.py +++ b/tackerclient/common/clientmanager.py @@ -17,15 +17,10 @@ """Manage access to the clients, including authenticating when needed. """ -import logging - from tackerclient import client from tackerclient.tacker import client as tacker_client -LOG = logging.getLogger(__name__) - - class ClientCache(object): """Descriptor class for caching created client handles."""