** Changed in: keystone Status: In Progress => Invalid -- You received this bug notification because you are a member of Yahoo! Engineering Team, which is subscribed to OpenStack Identity (keystone). https://bugs.launchpad.net/bugs/1793421
Title: Do not translate log messages Status in OpenStack Identity (keystone): Invalid Bug description: We should use "msg = _('My message.')" instead "msg = _(variable_containing_msg)" when logging message. For example: do not do this: # WRONG msg = _(variable_containing_msg) w_msg = _LW(variable_warning_msg) Instead, use this style: # RIGHT msg = _('My message.') w_msg = _LW('My warning message') refer to: https://docs.openstack.org/oslo.i18n/latest/user/guidelines.html#using-a-marker-function To manage notifications about this bug go to: https://bugs.launchpad.net/keystone/+bug/1793421/+subscriptions -- Mailing list: https://launchpad.net/~yahoo-eng-team Post to : yahoo-eng-team@lists.launchpad.net Unsubscribe : https://launchpad.net/~yahoo-eng-team More help : https://help.launchpad.net/ListHelp