Remove unused LOG

This is to remove unused LOG in some files

Change-Id: I4eaf149e2002f30a99730a40a9bd8e4283bdbcb9
This commit is contained in:
zhufl 2016-06-22 14:48:22 +08:00
parent 73c449834b
commit 742f4ab2df
5 changed files with 0 additions and 14 deletions

View File

@ -19,13 +19,10 @@ Utility for listing all currently installed Tempest plugins.
"""
from cliff import command
from oslo_log import log as logging
import prettytable
from tempest.test_discover.plugins import TempestTestPluginManager
LOG = logging.getLogger(__name__)
class TempestListPlugins(command.Command):
def take_action(self, parsed_args):

View File

@ -48,13 +48,11 @@ import threading
from cliff import command
from os_testr import subunit_trace
from oslo_log import log as logging
from testrepository.commands import run_argv
from tempest import config
LOG = logging.getLogger(__name__)
CONF = config.CONF

View File

@ -53,13 +53,11 @@ import sys
from cliff import command
from oslo_concurrency import lockutils
from oslo_log import log as logging
import prettytable
import yaml
from tempest import config
LOG = logging.getLogger(__name__)
CONF = config.CONF

View File

@ -13,14 +13,11 @@
# License for the specific language governing permissions and limitations
# under the License.
import logging
import os
import fixtures
import testtools
LOG = logging.getLogger(__name__)
class BaseTestCase(testtools.testcase.WithAttributes, testtools.TestCase):
setUpClassCalled = False

View File

@ -10,7 +10,6 @@
# License for the specific language governing permissions and limitations
# under the License.
from oslo_log import log as logging
from oslo_serialization import jsonutils as json
from six.moves.urllib import parse as urllib
@ -18,9 +17,6 @@ from tempest.lib.common import rest_client
from tempest.lib import exceptions as lib_exc
LOG = logging.getLogger(__name__)
class BaseSnapshotsClient(rest_client.RestClient):
"""Base Client class to send CRUD Volume API requests."""