From 597520d21f9829e6ad85f03af3274a3f7a2adbe5 Mon Sep 17 00:00:00 2001 From: Viktor Govako Date: Fri, 11 Feb 2022 18:59:27 +0300 Subject: [PATCH] [indexer] Print warning if Feature types count exceeded. Signed-off-by: Viktor Govako --- indexer/feature_data.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/indexer/feature_data.cpp b/indexer/feature_data.cpp index 3ce072df3f..56040c86dd 100644 --- a/indexer/feature_data.cpp +++ b/indexer/feature_data.cpp @@ -428,6 +428,8 @@ bool FeatureParams::FinishAddingTypes() { UselessTypesChecker::Instance().SortUselessToEnd(m_types); + LOG(LWARNING, ("Exceeded max types count:", TypesToString(m_types))); + m_types.resize(kMaxTypesCount); sort(m_types.begin(), m_types.end()); } @@ -435,7 +437,7 @@ bool FeatureParams::FinishAddingTypes() // Patch fix that removes house number from localities. if (!house.IsEmpty() && ftypes::IsLocalityChecker::Instance()(m_types)) { - LOG(LINFO, ("Locality with house number", *this)); + LOG(LWARNING, ("Locality with house number", *this)); house.Clear(); }