From 710c4f173fd97082c8024c13a14e710748416e90 Mon Sep 17 00:00:00 2001 From: Ngo Quoc Cuong Date: Thu, 29 Jun 2017 00:33:08 -0400 Subject: [PATCH] Add missing LOG.debug to hacking rule [N537] Don't translate logs: LOG.debug is missed Change-Id: I8c684b672944c3d6b7aa732bc497f19df55e6d0d --- neutron_lib/hacking/translation_checks.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/neutron_lib/hacking/translation_checks.py b/neutron_lib/hacking/translation_checks.py index e90694e..332e049 100644 --- a/neutron_lib/hacking/translation_checks.py +++ b/neutron_lib/hacking/translation_checks.py @@ -15,7 +15,8 @@ import re -_all_log_levels = {'critical', 'error', 'exception', 'info', 'warning'} +_all_log_levels = {'critical', 'error', 'exception', 'info', + 'warning', 'debug'} _all_hints = {'_LC', '_LE', '_LI', '_', '_LW'}