From 2929636b2e67bef300ccaff0572cc0f8ca7530a7 Mon Sep 17 00:00:00 2001 From: ji-xuepeng Date: Sat, 9 Jul 2016 23:26:10 +0800 Subject: [PATCH] Remove unused LOG This is to remove unused LOG to keep code clean. Change-Id: Ic123f89a341d6cf57c4f26568b626a49c6745045 --- keystoneclient/auth/identity/generic/password.py | 4 ---- keystoneclient/auth/identity/generic/token.py | 4 ---- keystoneclient/v3/users.py | 4 ---- 3 files changed, 12 deletions(-) diff --git a/keystoneclient/auth/identity/generic/password.py b/keystoneclient/auth/identity/generic/password.py index ba3b9d220..873e25396 100644 --- a/keystoneclient/auth/identity/generic/password.py +++ b/keystoneclient/auth/identity/generic/password.py @@ -10,8 +10,6 @@ # License for the specific language governing permissions and limitations # under the License. -import logging - from oslo_config import cfg from positional import positional @@ -21,8 +19,6 @@ from keystoneclient.auth.identity import v2 from keystoneclient.auth.identity import v3 from keystoneclient import utils -LOG = logging.getLogger(__name__) - def get_options(): return [ diff --git a/keystoneclient/auth/identity/generic/token.py b/keystoneclient/auth/identity/generic/token.py index 6a5d15b28..e3d01aa0f 100644 --- a/keystoneclient/auth/identity/generic/token.py +++ b/keystoneclient/auth/identity/generic/token.py @@ -10,8 +10,6 @@ # License for the specific language governing permissions and limitations # under the License. -import logging - from oslo_config import cfg from keystoneclient import _discover @@ -19,8 +17,6 @@ from keystoneclient.auth.identity.generic import base from keystoneclient.auth.identity import v2 from keystoneclient.auth.identity import v3 -LOG = logging.getLogger(__name__) - def get_options(): return [ diff --git a/keystoneclient/v3/users.py b/keystoneclient/v3/users.py index 4cd820381..e1990ce45 100644 --- a/keystoneclient/v3/users.py +++ b/keystoneclient/v3/users.py @@ -14,8 +14,6 @@ # License for the specific language governing permissions and limitations # under the License. -import logging - from debtcollector import renames from positional import positional @@ -23,8 +21,6 @@ from keystoneclient import base from keystoneclient import exceptions from keystoneclient.i18n import _ -LOG = logging.getLogger(__name__) - class User(base.Resource): """Represents an Identity user.