diff --git a/bilean/notification/converter.py b/bilean/notification/converter.py index 9fd1468..d2b24f1 100644 --- a/bilean/notification/converter.py +++ b/bilean/notification/converter.py @@ -18,7 +18,7 @@ import six import yaml from bilean.common.i18n import _ - +from bilean.common.i18n import _LI from oslo_config import cfg from oslo_log import log as logging from oslo_utils import timeutils @@ -80,7 +80,7 @@ def setup_resources(): " Using default config.")) resources_config = [] - LOG.info(_("Resource Definitions: %s"), resources_config) + LOG.info(_LI("Resource Definitions: %s"), resources_config) allow_drop = cfg.CONF.resource_definition.drop_unmatched_notifications return NotificationResourcesConverter(resources_config, diff --git a/bilean/notification/endpoint.py b/bilean/notification/endpoint.py index ab2ab59..c285786 100644 --- a/bilean/notification/endpoint.py +++ b/bilean/notification/endpoint.py @@ -14,6 +14,7 @@ from bilean.common import context from bilean.common.i18n import _ from bilean.common.i18n import _LE +from bilean.common.i18n import _LI from bilean.notification import action as notify_action from bilean.notification import converter @@ -59,7 +60,7 @@ class EventsNotificationEndpoint(object): action = self._get_action(notification['event_type']) if action: act = notify_action.UserAction(self.cnxt, action, user_id) - LOG.info(_("Notify engine to %(action)s user: %(user)s") % + LOG.info(_LI("Notify engine to %(action)s user: %(user)s") % {'action': action, 'user': user_id}) act.execute() @@ -78,9 +79,9 @@ class EventsNotificationEndpoint(object): for resource in resources: act = notify_action.ResourceAction( self.cnxt, action, resource) - LOG.info(_("Notify engine to %(action)s resource: " - "%(resource)s") % {'action': action, - 'resource': resource}) + LOG.info(_LI("Notify engine to %(action)s resource: " + "%(resource)s") % {'action': action, + 'resource': resource}) act.execute() return oslo_messaging.NotificationResult.HANDLED @@ -90,5 +91,5 @@ class EventsNotificationEndpoint(object): for action in available_actions: if action in event_type: return action - LOG.info(_("Can not get action info in event_type: %s") % event_type) + LOG.info(_LI("Can not get action info in event_type: %s") % event_type) return None