]> review.fuel-infra Code Review - openstack-build/neutron-build.git/commitdiff
Trival: Remove unused logging import
authorChangBo Guo(gcb) <eric.guo@easystack.cn>
Sat, 26 Dec 2015 03:10:41 +0000 (11:10 +0800)
committerChangBo Guo(gcb) <eric.guo@easystack.cn>
Sat, 26 Dec 2015 04:49:56 +0000 (12:49 +0800)
Change-Id: I13298e642f25c9f70dcff9b1e056b418edf0a461

49 files changed:
neutron/agent/common/config.py
neutron/agent/l3/dvr.py
neutron/agent/l3/dvr_edge_ha_router.py
neutron/agent/metadata/driver.py
neutron/api/rpc/callbacks/consumer/registry.py
neutron/api/rpc/callbacks/producer/registry.py
neutron/api/v2/router.py
neutron/api/versions.py
neutron/context.py
neutron/db/address_scope_db.py
neutron/db/availability_zone/network.py
neutron/db/extradhcpopt_db.py
neutron/db/l3_gwmode_db.py
neutron/db/metering/metering_db.py
neutron/db/portsecurity_db_common.py
neutron/db/qos/models.py
neutron/db/sqlalchemyutils.py
neutron/extensions/metering.py
neutron/extensions/servicetype.py
neutron/ipam/drivers/neutrondb_ipam/db_api.py
neutron/pecan_wsgi/hooks/policy_enforcement.py
neutron/plugins/ml2/drivers/l2pop/rpc_manager/l2population_rpc.py
neutron/plugins/ml2/drivers/linuxbridge/mech_driver/mech_linuxbridge.py
neutron/plugins/ml2/drivers/openvswitch/mech_driver/mech_openvswitch.py
neutron/services/firewall/agents/firewall_agent_api.py
neutron/services/qos/qos_plugin.py
neutron/tests/api/base.py
neutron/tests/api/clients.py
neutron/tests/api/test_flavors_extensions.py
neutron/tests/api/test_metering_extensions.py
neutron/tests/fullstack/resources/environment.py
neutron/tests/functional/agent/l2/base.py
neutron/tests/functional/agent/l3/framework.py
neutron/tests/functional/agent/linux/test_keepalived.py
neutron/tests/functional/agent/test_l2_lb_agent.py
neutron/tests/tempest/auth.py
neutron/tests/tempest/common/cred_provider.py
neutron/tests/tempest/common/generator/base_generator.py
neutron/tests/tempest/common/generator/negative_generator.py
neutron/tests/tempest/common/generator/valid_generator.py
neutron/tests/unit/agent/linux/test_dhcp.py
neutron/tests/unit/extensions/test_agent.py
neutron/tests/unit/extensions/test_availability_zone.py
neutron/tests/unit/extensions/test_external_net.py
neutron/tests/unit/extensions/test_extra_dhcp_opt.py
neutron/tests/unit/extensions/test_extraroute.py
neutron/tests/unit/extensions/test_l3.py
neutron/tests/unit/plugins/ml2/drivers/mech_fake_agent.py
neutron/tests/unit/test_manager.py

index d8ed1a133b4b61e6e9dd9b00dff9251eba67d6ae..d3594c4b81b5b2fdf86f55d1ea1bb9ec27f1af40 100644 (file)
 import os
 
 from oslo_config import cfg
-from oslo_log import log as logging
 
 from neutron._i18n import _
 from neutron.common import config
 
 
-LOG = logging.getLogger(__name__)
-
-
 ROOT_HELPER_OPTS = [
     cfg.StrOpt('root_helper', default='sudo',
                help=_("Root helper application. "
index 81aa2172cd4e0f7684ecaafdcb1cf74298ff76e9..6045d02224b62dc8b5dc0bc01c709e950b6fc2fd 100644 (file)
 
 import weakref
 
-from oslo_log import log as logging
-
 from neutron.agent.l3 import dvr_fip_ns
 from neutron.agent.l3 import dvr_snat_ns
 
-LOG = logging.getLogger(__name__)
 
 # TODO(Carl) Following constants retained to increase SNR during refactoring
 SNAT_INT_DEV_PREFIX = dvr_snat_ns.SNAT_INT_DEV_PREFIX
index ecd7a0e638fb40ad20dabaac11c01b29be14573c..d0844ca75facbe1ac186327837a236d5799b05ef 100644 (file)
 #    License for the specific language governing permissions and limitations
 #    under the License.
 
-from oslo_log import log as logging
-
 from neutron.agent.l3.dvr_edge_router import DvrEdgeRouter
 from neutron.agent.l3 import dvr_snat_ns
 from neutron.agent.l3.ha_router import HaRouter
 from neutron.agent.l3.router_info import RouterInfo
 from neutron.common import constants as l3_constants
 
-LOG = logging.getLogger(__name__)
-
 
 class DvrEdgeHaRouter(DvrEdgeRouter, HaRouter):
     """Router class which represents a centralized SNAT
index f25c28c54420893e525522f51dd091c9176f12ab..cee81c0d8683e9d943a5240b1d6fda077eec966e 100644 (file)
@@ -15,8 +15,6 @@
 
 import os
 
-from oslo_log import log as logging
-
 from neutron.agent.common import config
 from neutron.agent.l3 import ha_router
 from neutron.agent.l3 import namespaces
@@ -28,7 +26,6 @@ from neutron.callbacks import resources
 from neutron.common import constants
 from neutron.common import exceptions
 
-LOG = logging.getLogger(__name__)
 
 # Access with redirection to metadata proxy iptables mark mask
 METADATA_SERVICE_NAME = 'metadata-proxy'
index 3f6c5754f05cd5427379f8d2c3ca47dfe0424680..a59b5db9e9c8195183ab1f61319729234f3a9d31 100644 (file)
 #    License for the specific language governing permissions and limitations
 #    under the License.
 
-from oslo_log import log as logging
-
 from neutron.api.rpc.callbacks import resource_manager
 
 
-LOG = logging.getLogger(__name__)
-
-
 #TODO(ajo): consider adding locking to _get_manager, it's
 #           safe for eventlet, but not for normal threading.
 def _get_manager():
index b19a8bfd501d8d2508d1079e3729eff810592e49..92124c54bcf08fc6ddaa8df2477def9a9392a675 100644 (file)
 #    License for the specific language governing permissions and limitations
 #    under the License.
 
-from oslo_log import log as logging
-
 from neutron.api.rpc.callbacks import exceptions
 from neutron.api.rpc.callbacks import resource_manager
 from neutron.objects import base
 
 
-LOG = logging.getLogger(__name__)
-
-
 # TODO(ajo): consider adding locking: it's safe for eventlet but not
 #            for other types of threading.
 def _get_manager():
index c23679dfa08ca00ade585684235459c066f8b004..6389c83491608c52dd7b6cdfc2361cc9d21b3ae5 100644 (file)
@@ -14,7 +14,6 @@
 # limitations under the License.
 
 from oslo_config import cfg
-from oslo_log import log as logging
 from oslo_service import wsgi as base_wsgi
 import routes as routes_mapper
 import six
@@ -32,8 +31,6 @@ from neutron.quota import resource_registry
 from neutron import wsgi
 
 
-LOG = logging.getLogger(__name__)
-
 RESOURCES = {'network': 'networks',
              'subnet': 'subnets',
              'subnetpool': 'subnetpools',
index f806b0cdd844483c89cf51cf7b9a7b766b770a9a..8a707731235db0beb70da630595a12d6dafe0e3f 100644 (file)
@@ -14,7 +14,6 @@
 #    under the License.
 
 import oslo_i18n
-from oslo_log import log as logging
 import webob.dec
 
 from neutron._i18n import _
@@ -22,9 +21,6 @@ from neutron.api.views import versions as versions_view
 from neutron import wsgi
 
 
-LOG = logging.getLogger(__name__)
-
-
 class Versions(object):
 
     @classmethod
index 3076ae2491f8d74a4a05f826449388bd39e9f08a..4a37263c4ce4fdd120615ffb5db66cccfd6a2cdf 100644 (file)
@@ -19,15 +19,11 @@ import copy
 import datetime
 
 from oslo_context import context as oslo_context
-from oslo_log import log as logging
 
 from neutron.db import api as db_api
 from neutron import policy
 
 
-LOG = logging.getLogger(__name__)
-
-
 class ContextBase(oslo_context.RequestContext):
     """Security context and request information.
 
index d6b5892c9049d7fcf6605c0bd1d057479812bf70..26c8888c3a6aec162f1d75d9513eda06d0da05f8 100644 (file)
@@ -12,7 +12,6 @@
 #    License for the specific language governing permissions and limitations
 #    under the License.
 
-from oslo_log import log as logging
 from oslo_utils import uuidutils
 import sqlalchemy as sa
 from sqlalchemy.orm import exc
@@ -23,8 +22,6 @@ from neutron.db import model_base
 from neutron.db import models_v2
 from neutron.extensions import address_scope as ext_address_scope
 
-LOG = logging.getLogger(__name__)
-
 
 class AddressScope(model_base.BASEV2, models_v2.HasId, models_v2.HasTenant):
     """Represents a neutron address scope."""
index 9888b1cae4c9677c813d646606639fac26fd3b07..5b4b98412a59621b6b2c15adfda2223448c72660 100644 (file)
 #    License for the specific language governing permissions and limitations
 #    under the License.
 
-from oslo_log import log as logging
-
 from neutron.api.v2 import attributes
 from neutron.db import common_db_mixin
 from neutron.extensions import availability_zone as az_ext
 from neutron.extensions import network_availability_zone as net_az
 
 
-LOG = logging.getLogger(__name__)
-
-
 class NetworkAvailabilityZoneMixin(net_az.NetworkAvailabilityZonePluginBase):
     """Mixin class to enable network's availability zone attributes."""
 
index c6d1c6e4889a63c029ef46b3dcc7697215800e0b..a2d4a02c42fee8145c36fec0e8f6c42f1be6f0c0 100644 (file)
@@ -13,7 +13,6 @@
 #    License for the specific language governing permissions and limitations
 #    under the License.
 
-from oslo_log import log as logging
 import sqlalchemy as sa
 from sqlalchemy import orm
 
@@ -24,9 +23,6 @@ from neutron.db import models_v2
 from neutron.extensions import extra_dhcp_opt as edo_ext
 
 
-LOG = logging.getLogger(__name__)
-
-
 class ExtraDhcpOpt(model_base.BASEV2, models_v2.HasId):
     """Represent a generic concept of extra options associated to a port.
 
index 6252b5bd8a9a47a881a745b171508c8f58d2d416..ad218233dc6abb23faa68f6e852d717617a2eeaa 100644 (file)
@@ -14,7 +14,6 @@
 #
 
 from oslo_config import cfg
-from oslo_log import log as logging
 import sqlalchemy as sa
 from sqlalchemy import sql
 
@@ -24,7 +23,6 @@ from neutron.db import l3_db
 from neutron.extensions import l3
 
 
-LOG = logging.getLogger(__name__)
 OPTS = [
     cfg.BoolOpt('enable_snat_by_default', default=True,
                 help=_('Define the default value of enable_snat if not '
index 7d28af0f7ed837b1ddc50fe5d6cd7c64ef2d6c34..51f0f57370a1659664af8dcc98539e56f7bd6e6f 100644 (file)
@@ -13,7 +13,6 @@
 # under the License.
 
 import netaddr
-from oslo_log import log as logging
 from oslo_utils import uuidutils
 import sqlalchemy as sa
 from sqlalchemy import orm
@@ -29,9 +28,6 @@ from neutron.db import models_v2
 from neutron.extensions import metering
 
 
-LOG = logging.getLogger(__name__)
-
-
 class MeteringLabelRule(model_base.BASEV2, models_v2.HasId):
     direction = sa.Column(sa.Enum('ingress', 'egress',
                                   name='meteringlabels_direction'))
index e348f81b19c51d670ed2cbc09ce7daa3c7025971..6462227236fd303b157aab987418d75a4c4a80bf 100644 (file)
@@ -12,7 +12,6 @@
 #    License for the specific language governing permissions and limitations
 #    under the License.
 
-from oslo_log import log as logging
 import sqlalchemy as sa
 from sqlalchemy import orm
 from sqlalchemy.orm import exc
@@ -21,8 +20,6 @@ from neutron.db import model_base
 from neutron.db import models_v2
 from neutron.extensions import portsecurity as psec
 
-LOG = logging.getLogger(__name__)
-
 
 class PortSecurityBinding(model_base.BASEV2):
     port_id = sa.Column(sa.String(36),
index 3e1d027c68c567257f45694df85cb5488fc90edb..3a8b44d3d0ae23aeeeebc6e6101796e05bdeba74 100755 (executable)
@@ -13,7 +13,6 @@
 #    License for the specific language governing permissions and limitations
 #    under the License.
 
-from oslo_log import log as logging
 import sqlalchemy as sa
 
 from neutron.api.v2 import attributes as attrs
@@ -21,9 +20,6 @@ from neutron.db import model_base
 from neutron.db import models_v2
 
 
-LOG = logging.getLogger(__name__)
-
-
 class QosPolicy(model_base.BASEV2, models_v2.HasId, models_v2.HasTenant):
     __tablename__ = 'qos_policies'
     name = sa.Column(sa.String(attrs.NAME_MAX_LEN))
index b720554d8bfe626a674b13cc47b1c6054d97fa9f..92c5db2eaa54e59aa1dc20b10d0116dbc947c983 100644 (file)
@@ -13,7 +13,6 @@
 #    License for the specific language governing permissions and limitations
 #    under the License.
 
-from oslo_log import log as logging
 from six import moves
 import sqlalchemy
 from sqlalchemy.orm import properties
@@ -22,9 +21,6 @@ from neutron._i18n import _
 from neutron.common import exceptions as n_exc
 
 
-LOG = logging.getLogger(__name__)
-
-
 def paginate_query(query, model, limit, sorts, marker_obj=None):
     """Returns a query with sorting / pagination criteria added.
 
index 9410f51fdd524eb0b9dc10845cabd4e47c5e6b0d..8b9f919ab0fd26cf00a9d5b08753d11c42020c03 100644 (file)
@@ -14,7 +14,6 @@
 
 import abc
 
-from oslo_log import log as logging
 import six
 
 from neutron._i18n import _
@@ -25,8 +24,6 @@ from neutron.common import exceptions as nexception
 from neutron.plugins.common import constants
 from neutron.services import service_base
 
-LOG = logging.getLogger(__name__)
-
 
 class MeteringLabelNotFound(nexception.NotFound):
     message = _("Metering label %(label_id)s does not exist")
index adecd81aacd8ff9825eefc17a6765603ac538696..b7f18718ec0f5361c776330def611eeee1bca935 100644 (file)
 #    License for the specific language governing permissions and limitations
 #    under the License.
 
-from oslo_log import log as logging
-
 from neutron._i18n import _
 from neutron.api import extensions
 from neutron.api.v2 import attributes
 from neutron.api.v2 import base
 from neutron.db import servicetype_db
 
-LOG = logging.getLogger(__name__)
 
 RESOURCE_NAME = "service_provider"
 COLLECTION_NAME = "%ss" % RESOURCE_NAME
index 4fc3c0ca2b10a60c93b95fd804deff59a052fb5f..768e6ee0dc29103e66256d6122ee7da7ad904741 100644 (file)
 #    under the License.
 
 from oslo_db import exception as db_exc
-from oslo_log import log
 from oslo_utils import uuidutils
 from sqlalchemy.orm import exc as orm_exc
 
 from neutron.ipam.drivers.neutrondb_ipam import db_models
 from neutron.ipam import exceptions as ipam_exc
 
-LOG = log.getLogger(__name__)
 # Database operations for Neutron's DB-backed IPAM driver
 
 
index e0bc7741854959d4bff983f07d3413a5eff954b3..cc9ed31623004710d413705338b4e025f8d9d1f9 100644 (file)
@@ -16,7 +16,6 @@
 import copy
 import simplejson
 
-from oslo_log import log
 from oslo_policy import policy as oslo_policy
 from oslo_utils import excutils
 import pecan
@@ -29,8 +28,6 @@ from neutron import manager
 from neutron.pecan_wsgi.hooks import attribute_population
 from neutron import policy
 
-LOG = log.getLogger(__name__)
-
 
 class PolicyHook(hooks.PecanHook):
     priority = 135
index 509d425edd1fd7fc28f548936bc8973a4e6581d4..908842b1bc5a77331c9014d0ae02b2e3b1d269be 100644 (file)
@@ -17,14 +17,11 @@ import abc
 
 from oslo_config import cfg
 from oslo_log import helpers as log_helpers
-from oslo_log import log as logging
 import six
 
 from neutron.common import constants as n_const
 from neutron.plugins.ml2.drivers.l2pop import rpc as l2pop_rpc
 
-LOG = logging.getLogger(__name__)
-
 
 @six.add_metaclass(abc.ABCMeta)
 class L2populationRpcCallBackMixin(object):
index cfc9e9a8077e4964d23b432d6d6eb7072e854473..44c842c226eb11f188970f298fe9eb3d621aa364 100644 (file)
 #    License for the specific language governing permissions and limitations
 #    under the License.
 
-from oslo_log import log
-
 from neutron.agent import securitygroups_rpc
 from neutron.common import constants
 from neutron.extensions import portbindings
 from neutron.plugins.common import constants as p_constants
 from neutron.plugins.ml2.drivers import mech_agent
 
-LOG = log.getLogger(__name__)
-
 
 class LinuxbridgeMechanismDriver(mech_agent.SimpleAgentMechanismDriverBase):
     """Attach to networks using linuxbridge L2 agent.
index cc7007ac397e4124aa528e2fb51a68edddc715f2..0a835243bbc9f32dbee6beaaa14b1a18646108b0 100644 (file)
@@ -15,8 +15,6 @@
 
 import os
 
-from oslo_log import log
-
 from neutron.agent import securitygroups_rpc
 from neutron.common import constants
 from neutron.extensions import portbindings
@@ -27,8 +25,6 @@ from neutron.plugins.ml2.drivers.openvswitch.agent.common \
     import constants as a_const
 from neutron.services.qos import qos_consts
 
-LOG = log.getLogger(__name__)
-
 
 class OpenvswitchMechanismDriver(mech_agent.SimpleAgentMechanismDriverBase):
     """Attach to networks using openvswitch L2 agent.
index 2c274c5d0c95e2c95e1e8144705dac3c93904c27..ede77c3218749837bb2ed0b007cf53955eff2db4 100644 (file)
 #    under the License.
 
 from oslo_config import cfg
-from oslo_log import log as logging
 import oslo_messaging
 
 from neutron._i18n import _
 from neutron.common import rpc as n_rpc
 
-LOG = logging.getLogger(__name__)
 
 FWaaSOpts = [
     cfg.StrOpt(
index 29ff7b58ff17953d1da558909d270ae226e9bbf1..1327a748099829913e4f74ae617a832c3d054962 100644 (file)
@@ -12,8 +12,6 @@
 #    WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
 #    License for the specific language governing permissions and limitations
 #    under the License.
-from oslo_log import log as logging
-
 
 from neutron.common import exceptions as n_exc
 from neutron.db import api as db_api
@@ -26,9 +24,6 @@ from neutron.services.qos.notification_drivers import manager as driver_mgr
 from neutron.services.qos import qos_consts
 
 
-LOG = logging.getLogger(__name__)
-
-
 class QoSPlugin(qos.QoSPluginBase):
     """Implementation of the Neutron QoS Service Plugin.
 
index 0f31a9a2a84a7eb437177fff424b35e6d0c312de..065fd3b3a54126ed038b43d7921b612697d4318c 100644 (file)
@@ -14,7 +14,6 @@
 #    under the License.
 
 import netaddr
-from oslo_log import log as logging
 from tempest_lib.common.utils import data_utils
 from tempest_lib import exceptions as lib_exc
 
@@ -25,8 +24,6 @@ import neutron.tests.tempest.test
 
 CONF = config.CONF
 
-LOG = logging.getLogger(__name__)
-
 
 class BaseNetworkTest(neutron.tests.tempest.test.BaseTestCase):
 
index 87594f0f1e318f7f964eafbe46bc6e7203ef94b2..9fbdbac4151e6dd4831bd1239b5c9a5ff504cf47 100644 (file)
@@ -13,8 +13,6 @@
 #    License for the specific language governing permissions and limitations
 #    under the License.
 
-from oslo_log import log as logging
-
 from tempest_lib.services.identity.v2.token_client import TokenClient
 from tempest_lib.services.identity.v3.token_client import V3TokenClient
 
@@ -40,7 +38,6 @@ from neutron.tests.tempest.services.network.json.network_client import \
 
 
 CONF = config.CONF
-LOG = logging.getLogger(__name__)
 
 
 class Manager(manager.Manager):
index ecf3161c9de5eb2c814628040441dd88f1f8a0a7..1ca68ef5b9781dffa5c9a8e8207b56ec9dd8245d 100644 (file)
 # License for the specific language governing permissions and limitations
 # under the License.
 
-from oslo_log import log as logging
 from tempest_lib import exceptions as lib_exc
 
 from neutron.tests.api import base
 from neutron.tests.tempest import test
 
 
-LOG = logging.getLogger(__name__)
-
-
 class TestFlavorsJson(base.BaseAdminNetworkTest):
 
     """
index f26b0b2d0820920d84ea4cffd00a104a9ff68715..6c759487a3db2663099002994ce41a4358fec74f 100644 (file)
 # License for the specific language governing permissions and limitations
 # under the License.
 
-from oslo_log import log as logging
 from tempest_lib.common.utils import data_utils
 
 from neutron.tests.api import base
 from neutron.tests.tempest import test
 
 
-LOG = logging.getLogger(__name__)
-
-
 class MeteringTestJSON(base.BaseAdminNetworkTest):
 
     """
index 62c8d0adb39285355564b4a515bb6ad83da05b32..1105e8c173052163f41f35a7e82598ed7b6075ea 100644 (file)
@@ -18,7 +18,6 @@ import fixtures
 import netaddr
 from neutronclient.common import exceptions as nc_exc
 from oslo_config import cfg
-from oslo_log import log as logging
 
 from neutron.agent.linux import utils
 from neutron.common import utils as common_utils
@@ -26,8 +25,6 @@ from neutron.tests.common import net_helpers
 from neutron.tests.fullstack.resources import config
 from neutron.tests.fullstack.resources import process
 
-LOG = logging.getLogger(__name__)
-
 
 class EnvironmentDescription(object):
     """A set of characteristics of an environment setup.
index 39f1a755d822633e24b9cf462dd4cc61a088d12e..66609b8f6abcdefbc553cd382629e4e9b5ee2640 100644 (file)
@@ -19,7 +19,6 @@ import random
 import eventlet
 import mock
 from oslo_config import cfg
-from oslo_log import log as logging
 from oslo_utils import uuidutils
 
 from neutron.agent.common import config as agent_config
@@ -46,8 +45,6 @@ from neutron.plugins.ml2.drivers.openvswitch.agent import ovs_neutron_agent \
 from neutron.tests.common import net_helpers
 from neutron.tests.functional.agent.linux import base
 
-LOG = logging.getLogger(__name__)
-
 
 class OVSAgentTestFramework(base.BaseOVSLinuxTestCase):
 
index 465338a90832d6edf17d9cf25ab1e5d538cc849c..e5084759a98ede0f04f0401096ddae6df077ad9b 100644 (file)
@@ -38,7 +38,6 @@ from neutron.tests.common import net_helpers
 from neutron.tests.functional import base
 
 
-LOG = logging.getLogger(__name__)
 _uuid = uuidutils.generate_uuid
 
 
index 47c2613cbfcb47fe6f0d05e3872c678b32a694c7..eacbbaf0222ea1b383b993e7e36c2556bab96a65 100644 (file)
@@ -14,7 +14,6 @@
 #    under the License.
 
 from oslo_config import cfg
-from oslo_log import log as logging
 
 from neutron._i18n import _
 from neutron.agent.linux import external_process
@@ -24,9 +23,6 @@ from neutron.tests import base
 from neutron.tests.unit.agent.linux import test_keepalived
 
 
-LOG = logging.getLogger(__name__)
-
-
 class KeepalivedManagerTestCase(base.BaseTestCase,
                                 test_keepalived.KeepalivedConfBaseMixin):
 
index 5dfdacd404be4754d02e15e93cc8e0354dd884e9..74981ade2ac58da9eeaea99bd1a08cde630f058c 100644 (file)
 
 import mock
 from oslo_config import cfg
-from oslo_log import log as logging
 import testtools
 
 from neutron.plugins.ml2.drivers.linuxbridge.agent import \
     linuxbridge_neutron_agent
 from neutron.tests.functional.agent.linux import test_ip_lib
 
-LOG = logging.getLogger(__name__)
 lba = linuxbridge_neutron_agent
 
 
index fc4359778b8e3e3809dff467b9db5a35e386cfce..a9fdb034b03d761c1f6bf0527225567aea5b4a18 100644 (file)
@@ -20,14 +20,11 @@ import exceptions
 import re
 import urlparse
 
-from oslo_log import log as logging
 import six
 
 from tempest_lib.services.identity.v2 import token_client as json_v2id
 from tempest_lib.services.identity.v3 import token_client as json_v3id
 
-LOG = logging.getLogger(__name__)
-
 
 @six.add_metaclass(abc.ABCMeta)
 class AuthProvider(object):
index 07fa89ffab8ce2656c3284dacc6f7df0a55b3e5b..b90d09d099dd73ed09b82a23cea5b759eec23f88 100644 (file)
@@ -14,7 +14,6 @@
 
 import abc
 
-from oslo_log import log as logging
 import six
 
 from neutron.tests.tempest import auth
@@ -22,7 +21,6 @@ from neutron.tests.tempest import config
 from neutron.tests.tempest import exceptions
 
 CONF = config.CONF
-LOG = logging.getLogger(__name__)
 
 # Type of credentials available from configuration
 CREDENTIAL_TYPES = {
index 6db3f2474caeeb46603ad6995d9da410ef8e5877..41ed48cc5cd675e718f574300e2bebaf2b5a16ce 100644 (file)
@@ -19,10 +19,6 @@ import functools
 import jsonschema
 import six
 
-from oslo_log import log as logging
-
-LOG = logging.getLogger(__name__)
-
 
 def _check_for_expected_result(name, schema):
     expected_result = None
index ba8884f1e894f2770f217abcda2ca442dcd55551..44cd3058103756a12e29bec65ea6319048bcb210 100644 (file)
 
 import copy
 
-from oslo_log import log as logging
-
 import neutron.tests.tempest.common.generator.base_generator as base
 import neutron.tests.tempest.common.generator.valid_generator as valid
 
-LOG = logging.getLogger(__name__)
-
 
 class NegativeTestGenerator(base.BasicGeneratorSet):
     @base.generator_type("string")
index 269820052f2291f6c80184f61ab1c85d204668fb..bc7014c40a8d884b56b009262855eb4b8e33489b 100644 (file)
 #    License for the specific language governing permissions and limitations
 #    under the License.
 
-from oslo_log import log as logging
 import six
 
 import neutron.tests.tempest.common.generator.base_generator as base
 
 
-LOG = logging.getLogger(__name__)
-
-
 class ValidTestGenerator(base.BasicGeneratorSet):
     @base.generator_type("string")
     @base.simple_generator
index 759e32da5d46e48955f14cb1fc2eb4a3b4f3c990..2fce527f59d7e404e5104d29bf17058ed75c2210 100644 (file)
@@ -18,7 +18,6 @@ import os
 import mock
 import netaddr
 from oslo_config import cfg
-from oslo_log import log as logging
 
 from neutron.agent.common import config
 from neutron.agent.dhcp import config as dhcp_config
@@ -31,8 +30,6 @@ from neutron.extensions import extra_dhcp_opt as edo_ext
 from neutron.tests import base
 from neutron.tests import tools
 
-LOG = logging.getLogger(__name__)
-
 
 class FakeIPAllocation(object):
     def __init__(self, address, subnet_id=None):
index 21fa1022b3952284ab9ac4f4d035bbe8a5a6142f..65ef6deba594fd941ec826bcf4b40306177d34b9 100644 (file)
@@ -18,7 +18,6 @@ from datetime import datetime
 import time
 
 from oslo_config import cfg
-from oslo_log import log as logging
 from oslo_utils import uuidutils
 from webob import exc
 
@@ -34,8 +33,6 @@ from neutron.tests.unit.api.v2 import test_base
 from neutron.tests.unit.db import test_db_base_plugin_v2
 
 
-LOG = logging.getLogger(__name__)
-
 _uuid = uuidutils.generate_uuid
 _get_path = test_base._get_path
 L3_HOSTA = 'hosta'
index 40b04518489b252cd2e648036fa84bd1f3492b5f..553441c6f96896db7fef9eeaa82294981e95f99c 100644 (file)
@@ -11,8 +11,6 @@
 #    License for the specific language governing permissions and limitations
 #    under the License.
 
-from oslo_log import log as logging
-
 from neutron import context
 from neutron.db import agents_db
 from neutron.db import db_base_plugin_v2
@@ -22,9 +20,6 @@ from neutron.tests.common import helpers
 from neutron.tests.unit.db import test_db_base_plugin_v2
 
 
-LOG = logging.getLogger(__name__)
-
-
 class AZExtensionManager(object):
 
     def get_resources(self):
index cf833b9d737116810dc77220b92cd50e4af9c0ff..25e59ad593034fb54cdc227c0d9dce96138b0aff 100644 (file)
@@ -14,7 +14,6 @@
 #    under the License.
 
 import mock
-from oslo_log import log as logging
 from oslo_utils import uuidutils
 import testtools
 from webob import exc
@@ -27,8 +26,6 @@ from neutron.tests.unit.api.v2 import test_base
 from neutron.tests.unit.db import test_db_base_plugin_v2
 
 
-LOG = logging.getLogger(__name__)
-
 _uuid = uuidutils.generate_uuid
 _get_path = test_base._get_path
 
index 41ad18e85f0064277268852a8785bc300072f236..e1ef765db930495cecf09227e50e252e4d1b1fe4 100644 (file)
@@ -15,7 +15,6 @@
 
 import copy
 
-from oslo_log import log as logging
 import webob.exc
 
 from neutron.db import db_base_plugin_v2
@@ -23,7 +22,6 @@ from neutron.db import extradhcpopt_db as edo_db
 from neutron.extensions import extra_dhcp_opt as edo_ext
 from neutron.tests.unit.db import test_db_base_plugin_v2
 
-LOG = logging.getLogger(__name__)
 
 DB_PLUGIN_KLASS = (
     'neutron.tests.unit.extensions.test_extra_dhcp_opt.ExtraDhcpOptTestPlugin')
index c3c39dc194b72f8269177cb5aa2863e1b33f11a8..8b4f2e69b325ff44fe98e370576a19a4925837b6 100644 (file)
@@ -14,7 +14,6 @@
 #    under the License.
 
 from oslo_config import cfg
-from oslo_log import log as logging
 from oslo_utils import uuidutils
 from webob import exc
 
@@ -27,8 +26,6 @@ from neutron.tests.unit.api.v2 import test_base
 from neutron.tests.unit.extensions import test_l3 as test_l3
 
 
-LOG = logging.getLogger(__name__)
-
 _uuid = uuidutils.generate_uuid
 _get_path = test_base._get_path
 
index f5fcac7d61617fbfec46ff4737acf69a729d6472..7d57c6b1214f585bc3d6aef1d6d485e3361256ac 100644 (file)
@@ -20,7 +20,6 @@ import copy
 import mock
 import netaddr
 from oslo_config import cfg
-from oslo_log import log as logging
 from oslo_utils import importutils
 from oslo_utils import uuidutils
 from webob import exc
@@ -58,7 +57,6 @@ from neutron.tests.unit.extensions import base as test_extensions_base
 from neutron.tests.unit.extensions import test_agent
 from neutron.tests.unit.plugins.ml2 import base as ml2_base
 
-LOG = logging.getLogger(__name__)
 
 _uuid = uuidutils.generate_uuid
 _get_path = test_base._get_path
index 4aeca4e4daf62ec2b8b9605fc2e96e273a30eed5..2c8744a4d1bc5aee74af51208b1d699f103c076c 100644 (file)
 #    License for the specific language governing permissions and limitations
 #    under the License.
 
-from oslo_log import log as logging
-
 from neutron.agent import securitygroups_rpc
 from neutron.common import constants
 from neutron.extensions import portbindings
 from neutron.plugins.common import constants as p_constants
 from neutron.plugins.ml2.drivers import mech_agent
 
-LOG = logging.getLogger(__name__)
-
 
 class FakeAgentMechanismDriver(mech_agent.SimpleAgentMechanismDriverBase):
     """ML2 mechanism driver for testing.
index ba90ac36e73ed38f83786ea2dcb68d072406e944..80b0a31a03aa11a53d516922cdcb10e945a20751 100644 (file)
@@ -15,7 +15,6 @@
 
 import fixtures
 from oslo_config import cfg
-from oslo_log import log as logging
 
 from neutron import manager
 from neutron.plugins.common import constants
@@ -24,7 +23,6 @@ from neutron.tests.unit import dummy_plugin
 from neutron.tests.unit import testlib_api
 
 
-LOG = logging.getLogger(__name__)
 DB_PLUGIN_KLASS = 'neutron.db.db_base_plugin_v2.NeutronDbPluginV2'