diff --git a/watcher/decision_engine/model/notification/base.py b/watcher/decision_engine/model/notification/base.py index 6dd30c79a..5cf2d20d7 100644 --- a/watcher/decision_engine/model/notification/base.py +++ b/watcher/decision_engine/model/notification/base.py @@ -19,12 +19,8 @@ import abc import six -from oslo_log import log - from watcher.common import rpc -LOG = log.getLogger(__name__) - @six.add_metaclass(abc.ABCMeta) class NotificationEndpoint(object): diff --git a/watcher/decision_engine/model/notification/filtering.py b/watcher/decision_engine/model/notification/filtering.py index e0d7349d4..737e317ff 100644 --- a/watcher/decision_engine/model/notification/filtering.py +++ b/watcher/decision_engine/model/notification/filtering.py @@ -18,12 +18,9 @@ import re -from oslo_log import log import oslo_messaging as om import six -LOG = log.getLogger(__name__) - class NotificationFilter(om.NotificationFilter): """Notification Endpoint base class