From 00ff5f05d3f0d503104a84c73d2bf6751184f077 Mon Sep 17 00:00:00 2001 From: Gavin Chou Date: Sun, 21 Apr 2024 11:04:57 +0800 Subject: [PATCH] [chore](log) Avoid too many 'token parser result is empty' (#33921) --- be/src/vec/functions/match.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/be/src/vec/functions/match.cpp b/be/src/vec/functions/match.cpp index 3f2564227bad87..eab790678eacb5 100644 --- a/be/src/vec/functions/match.cpp +++ b/be/src/vec/functions/match.cpp @@ -279,7 +279,7 @@ Status FunctionMatchPhrase::execute_match(const std::string& column_name, query_tokens, reader.get(), inverted_index_ctx->analyzer, column_name, doris::segment_v2::InvertedIndexQueryType::MATCH_PHRASE_QUERY); if (query_tokens.empty()) { - LOG(WARNING) << fmt::format( + VLOG_DEBUG << fmt::format( "token parser result is empty for query, " "please check your query: '{}' and index parser: '{}'", match_query_str, inverted_index_parser_type_to_string(parser_type));