This is an automated email from the ASF dual-hosted git repository.

dataroaring pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/doris.git


The following commit(s) were added to refs/heads/master by this push:
     new 4f06106fa14 [chore](log) Avoid too many 'token parser result is empty' 
(#33921)
4f06106fa14 is described below

commit 4f06106fa14a5699e866ecabaa581d0a87221fdb
Author: Gavin Chou <[email protected]>
AuthorDate: Sun Apr 21 11:04:57 2024 +0800

    [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 3f2564227ba..eab790678ea 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));


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to