From 5b7b69dca40f84d42651506aa1d3da38b3aeb547 Mon Sep 17 00:00:00 2001 From: Viktor Govako Date: Thu, 3 Apr 2025 21:58:28 -0300 Subject: [PATCH] Minor log fix. Signed-off-by: Viktor Govako --- search/processor.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/search/processor.cpp b/search/processor.cpp index 7b2a0ac8a..d634766da 100644 --- a/search/processor.cpp +++ b/search/processor.cpp @@ -226,7 +226,7 @@ void Processor::SetInputLocale(string const & locale) return; int8_t const code = StringUtf8Multilang::GetLangIndex(languages::Normalize(locale)); - LOG(LDEBUG, ("New input locale:", locale, "locale code:", code)); + LOG(LDEBUG, ("New input locale:", locale, "; locale code:", int(code))); m_keywordsScorer.SetLanguages(LanguageTier::LANGUAGE_TIER_INPUT, feature::GetSimilar(code)); m_inputLocaleCode = CategoriesHolder::MapLocaleToInteger(locale); }