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

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


The following commit(s) were added to refs/heads/branch-2.0 by this push:
     new 2bbd0aaf6b0 [log](load) print reason when LoadPathMgr failed to delete 
file (#38235) (#38339)
2bbd0aaf6b0 is described below

commit 2bbd0aaf6b0c815cee968394693a5529dd940f84
Author: Kaijie Chen <c...@apache.org>
AuthorDate: Thu Jul 25 20:00:02 2024 +0800

    [log](load) print reason when LoadPathMgr failed to delete file (#38235) 
(#38339)
    
    backport #38235
---
 be/src/runtime/load_path_mgr.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/be/src/runtime/load_path_mgr.cpp b/be/src/runtime/load_path_mgr.cpp
index 6f5e47b8573..66dea9d2c05 100644
--- a/be/src/runtime/load_path_mgr.cpp
+++ b/be/src/runtime/load_path_mgr.cpp
@@ -177,7 +177,7 @@ void LoadPathMgr::process_path(time_t now, const 
std::string& path, int64_t rese
     if (status.ok()) {
         LOG(INFO) << "Remove path success. path=" << path;
     } else {
-        LOG(WARNING) << "Remove path failed. path=" << path;
+        LOG(WARNING) << "Remove path failed. path=" << path << ", error=" << 
status;
     }
 }
 


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org
For additional commands, e-mail: commits-h...@doris.apache.org

Reply via email to