Skip to content

Commit

Permalink
chore(search): Silence query parser error (dragonflydb#3570)
Browse files Browse the repository at this point in the history
  • Loading branch information
dranikpg authored Aug 26, 2024
1 parent 9c3d69e commit 10816b5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/search/query_driver.cc
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ void QueryDriver::ResetScanner() {
}

void QueryDriver::Error(const Parser::location_type& loc, std::string_view msg) {
LOG(ERROR) << "Parse error " << loc << ": " << msg;
VLOG(1) << "Parse error " << loc << ": " << msg;
}

} // namespace search
Expand Down

0 comments on commit 10816b5

Please sign in to comment.