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 a66a2c1e25c [chore](log): change some info logs to debug (#55138)
a66a2c1e25c is described below

commit a66a2c1e25ca3476263de545abcce44c2bcec993
Author: Kaijie Chen <[email protected]>
AuthorDate: Fri Aug 22 13:31:10 2025 +0800

    [chore](log): change some info logs to debug (#55138)
    
    
    Change some info logs to debug.
---
 be/src/cloud/cloud_tablet.cpp          | 6 +++---
 be/src/cloud/cloud_warm_up_manager.cpp | 4 ++--
 2 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/be/src/cloud/cloud_tablet.cpp b/be/src/cloud/cloud_tablet.cpp
index 84ccba2ce48..e3ad195314a 100644
--- a/be/src/cloud/cloud_tablet.cpp
+++ b/be/src/cloud/cloud_tablet.cpp
@@ -503,9 +503,9 @@ uint64_t CloudTablet::delete_expired_stale_rowsets() {
                 if (rs_it != _stale_rs_version_map.end()) {
                     expired_rowsets.push_back(rs_it->second);
                     stale_rowsets.push_back(rs_it->second);
-                    LOG(INFO) << "erase stale rowset, tablet_id=" << 
tablet_id()
-                              << " rowset_id=" << 
rs_it->second->rowset_id().to_string()
-                              << " version=" << rs_it->first.to_string();
+                    VLOG_DEBUG << "erase stale rowset, tablet_id=" << 
tablet_id()
+                               << " rowset_id=" << 
rs_it->second->rowset_id().to_string()
+                               << " version=" << rs_it->first.to_string();
                     _stale_rs_version_map.erase(rs_it);
                 } else {
                     LOG(WARNING) << "cannot find stale rowset " << 
v_ts->version() << " in tablet "
diff --git a/be/src/cloud/cloud_warm_up_manager.cpp 
b/be/src/cloud/cloud_warm_up_manager.cpp
index e508c4306fc..e83ef4b79f8 100644
--- a/be/src/cloud/cloud_warm_up_manager.cpp
+++ b/be/src/cloud/cloud_warm_up_manager.cpp
@@ -526,8 +526,8 @@ void CloudWarmUpManager::warm_up_rowset(RowsetMeta& 
rs_meta, int64_t sync_wait_t
     bool cache_hit = false;
     auto replicas = get_replica_info(rs_meta.tablet_id(), false, cache_hit);
     if (replicas.empty()) {
-        LOG(INFO) << "There is no need to warmup tablet=" << 
rs_meta.tablet_id()
-                  << ", skipping rowset=" << rs_meta.rowset_id().to_string();
+        VLOG_DEBUG << "There is no need to warmup tablet=" << 
rs_meta.tablet_id()
+                   << ", skipping rowset=" << rs_meta.rowset_id().to_string();
         return;
     }
     Status st = _do_warm_up_rowset(rs_meta, replicas, sync_wait_timeout_ms, 
!cache_hit);


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

Reply via email to