Skip to content

Commit

Permalink
[chore](log) Avoid too many 'token parser result is empty' (#33921)
Browse files Browse the repository at this point in the history
  • Loading branch information
gavinchou authored and Doris-Extras committed Apr 21, 2024
1 parent d79c532 commit 00ff5f0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion be/src/vec/functions/match.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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));
Expand Down

0 comments on commit 00ff5f0

Please sign in to comment.