Merge "Use international logging message"

This commit is contained in:
Jenkins 2016-08-11 06:02:00 +00:00 committed by Gerrit Code Review
commit c065366978
2 changed files with 3 additions and 2 deletions

View File

@ -692,7 +692,7 @@ class Manager(manager.Manager):
ref_results.append(implied_ref)
role_refs_to_check.append(implied_ref)
except exception.NotImplemented:
LOG.error('Role driver does not support implied roles.')
LOG.error(_LE('Role driver does not support implied roles.'))
return ref_results

View File

@ -17,6 +17,7 @@ import sqlalchemy as sql
from keystone.assignment.backends import sql as assignment_sql
from keystone.common import sql as ks_sql
from keystone.i18n import _LE
from keystone.identity.mapping_backends import mapping as mapping_backend
@ -244,7 +245,7 @@ def upgrade(migrate_engine):
try:
table.create()
except Exception:
LOG.exception('Exception while creating table: %r', table)
LOG.exception(_LE('Exception while creating table: %r'), table)
raise
# Unique Constraints