From 95c25b274cf6a71ca39bac179d42cb24bba6343a Mon Sep 17 00:00:00 2001 From: DarkPhoenix Date: Tue, 24 Nov 2020 13:01:52 +0300 Subject: [PATCH] Add logging to help with no localization debugging --- service/settings.py | 1 + 1 file changed, 1 insertion(+) diff --git a/service/settings.py b/service/settings.py index c3d5bb41c..ccd5dd155 100644 --- a/service/settings.py +++ b/service/settings.py @@ -572,6 +572,7 @@ class LocaleSettings: @classmethod def supported_langauges(cls): """Requires the application to be initialized, otherwise wx.Translation isn't set.""" + pyfalog.info(f'using "{config.CATALOG}" to fetch languages, relatively base path "{os.getcwd()}"') return {x: wx.Locale.FindLanguageInfo(x) for x in wx.Translations.Get().GetAvailableTranslations(config.CATALOG)} def get(self, key):