This is an automated email from the ASF dual-hosted git repository. eldenmoon pushed a commit to branch branch-3.0 in repository https://gitbox.apache.org/repos/asf/doris.git
The following commit(s) were added to refs/heads/branch-3.0 by this push: new 1eb1328fd2c branch-3.0: [chore](log) change PointQueryExecutor log to VLOG_DEBUG #49860 (#49868) 1eb1328fd2c is described below commit 1eb1328fd2c52cc4872492eb2d73d215295426b7 Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> AuthorDate: Tue Apr 8 22:37:26 2025 +0800 branch-3.0: [chore](log) change PointQueryExecutor log to VLOG_DEBUG #49860 (#49868) Cherry-picked from #49860 Co-authored-by: lihangyu <lihan...@selectdb.com> --- be/src/service/point_query_executor.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/be/src/service/point_query_executor.h b/be/src/service/point_query_executor.h index 89f4ecff9b1..7b5f0ff5432 100644 --- a/be/src/service/point_query_executor.h +++ b/be/src/service/point_query_executor.h @@ -245,9 +245,9 @@ private: std::string key = encode_key(cache_id); auto* value = new CacheValue; value->item = item; - LOG(INFO) << "Add item mem" - << ", cache_capacity: " << get_capacity() << ", cache_usage: " << get_usage() - << ", mem_consum: " << mem_consumption(); + VLOG_DEBUG << "Add item mem" + << ", cache_capacity: " << get_capacity() << ", cache_usage: " << get_usage() + << ", mem_consum: " << mem_consumption(); auto* lru_handle = insert(key, value, 1, sizeof(Reusable), CachePriority::NORMAL); release(lru_handle); } --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org