summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJenkins <jenkins@review.openstack.org>2017-03-28 14:47:51 +0000
committerGerrit Code Review <review@openstack.org>2017-03-28 14:47:51 +0000
commit93cbd50476f2d2deda320339e9ab1bebb7fc5949 (patch)
tree09e1a49ea7ae047eee3c764bf2a85648ec27a191
parentdf56890a3cda27277456c8dc0358349a612ffc31 (diff)
parentfd2e1f8a04b78185e0c516c8c65e443f74f99340 (diff)
downloadoslo-log-93cbd50476f2d2deda320339e9ab1bebb7fc5949.tar.gz
Merge "Remove log translations"
-rw-r--r--oslo_log/_i18n.py10
1 files changed, 0 insertions, 10 deletions
diff --git a/oslo_log/_i18n.py b/oslo_log/_i18n.py
index 15c84e7..935a5f9 100644
--- a/oslo_log/_i18n.py
+++ b/oslo_log/_i18n.py
@@ -25,13 +25,3 @@ _translators = oslo_i18n.TranslatorFactory(domain='oslo_log')
# The primary translation function using the well-known name "_"
_ = _translators.primary
-
-# Translators for log levels.
-#
-# The abbreviated names are meant to reflect the usual use of a short
-# name like '_'. The "L" is for "log" and the other letter comes from
-# the level.
-_LI = _translators.log_info
-_LW = _translators.log_warning
-_LE = _translators.log_error
-_LC = _translators.log_critical