remove logging call
This commit is contained in:
@ -20,7 +20,6 @@
|
|||||||
|
|
||||||
import gettext
|
import gettext
|
||||||
from functools import wraps
|
from functools import wraps
|
||||||
import logging
|
|
||||||
|
|
||||||
from locales import available_locales
|
from locales import available_locales
|
||||||
from database import db_session
|
from database import db_session
|
||||||
@ -94,7 +93,6 @@ def __(singular, plural=None, n=1, multi=False):
|
|||||||
else:
|
else:
|
||||||
for locale in _.locale_stack:
|
for locale in _.locale_stack:
|
||||||
translation = _(singular, plural, n, locale)
|
translation = _(singular, plural, n, locale)
|
||||||
logging.info(translation)
|
|
||||||
|
|
||||||
if translation not in translations:
|
if translation not in translations:
|
||||||
translations.append(translation)
|
translations.append(translation)
|
||||||
|
Reference in New Issue
Block a user