Remove unused LOG

This is to remove unused LOG to keep code clean.

Change-Id: I2f45e1590eae8be4f530182f92588b5d9b9b9215
This commit is contained in:
zhufl 2016-07-05 15:04:38 +08:00
parent c8217ca2fb
commit 6e6230f75c
3 changed files with 0 additions and 6 deletions

View File

@ -14,7 +14,6 @@
import abc
from oslo_log import log
from oslo_log import versionutils
import six
@ -24,7 +23,6 @@ from keystone.i18n import _
CONF = keystone.conf.CONF
LOG = log.getLogger(__name__)
# The RoleDriverBase class is the set of driver methods from earlier

View File

@ -14,7 +14,6 @@
import abc
from oslo_log import log
import six
import keystone.conf
@ -22,7 +21,6 @@ from keystone import exception
CONF = keystone.conf.CONF
LOG = log.getLogger(__name__)
@six.add_metaclass(abc.ABCMeta)

View File

@ -16,7 +16,6 @@
"""Main entry point into the Catalog service."""
from oslo_cache import core as oslo_cache
from oslo_log import log
from oslo_log import versionutils
from keystone.catalog.backends import base
@ -31,7 +30,6 @@ from keystone import notifications
CONF = keystone.conf.CONF
LOG = log.getLogger(__name__)
# This is a general cache region for catalog administration (CRUD operations).