diff --git a/watcher/api/controllers/v1/audit_template.py b/watcher/api/controllers/v1/audit_template.py index 8dbc2fae5..ffc2c0e8b 100644 --- a/watcher/api/controllers/v1/audit_template.py +++ b/watcher/api/controllers/v1/audit_template.py @@ -51,8 +51,6 @@ import wsme from wsme import types as wtypes import wsmeext.pecan as wsme_pecan -from oslo_log import log - from watcher._i18n import _ from watcher.api.controllers import base from watcher.api.controllers import link @@ -66,8 +64,6 @@ from watcher.common import utils as common_utils from watcher.decision_engine.loading import default as default_loading from watcher import objects -LOG = log.getLogger(__name__) - class AuditTemplatePostType(wtypes.Base): _ctx = context_utils.make_context() diff --git a/watcher/datasource/manager.py b/watcher/datasource/manager.py index 6d8032b0a..b38beb474 100644 --- a/watcher/datasource/manager.py +++ b/watcher/datasource/manager.py @@ -13,16 +13,12 @@ # See the License for the specific language governing permissions and # limitations under the License. -from oslo_log import log - from watcher.common import exception from watcher.datasource import base from watcher.datasource import ceilometer as ceil from watcher.datasource import gnocchi as gnoc from watcher.datasource import monasca as mon -LOG = log.getLogger(__name__) - class DataSourceManager(object): diff --git a/watcher/decision_engine/scope/baremetal.py b/watcher/decision_engine/scope/baremetal.py index 1a090ca81..26c328ffd 100644 --- a/watcher/decision_engine/scope/baremetal.py +++ b/watcher/decision_engine/scope/baremetal.py @@ -14,14 +14,9 @@ # See the License for the specific language governing permissions and # limitations under the License. -from oslo_log import log - from watcher.decision_engine.scope import base -LOG = log.getLogger(__name__) - - class BaremetalScope(base.BaseScope): """Baremetal Audit Scope Handler""" diff --git a/watcher/decision_engine/scope/storage.py b/watcher/decision_engine/scope/storage.py index 52c008af6..7a36694b5 100644 --- a/watcher/decision_engine/scope/storage.py +++ b/watcher/decision_engine/scope/storage.py @@ -11,16 +11,12 @@ # See the License for the specific language governing permissions and # limitations under the License. -from oslo_log import log from watcher.common import cinder_helper from watcher.common import exception from watcher.decision_engine.scope import base -LOG = log.getLogger(__name__) - - class StorageScope(base.BaseScope): """Storage Audit Scope Handler"""