From 54787f51c7ed454feff1663c4e4255c011749421 Mon Sep 17 00:00:00 2001 From: Kaijie Chen Date: Thu, 25 Jul 2024 17:28:09 +0800 Subject: [PATCH] [log](load) print reason when LoadPathMgr failed to delete file (#38235) (#38340) 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 f961fa9b7e..f1899aadb2 100644 --- a/be/src/runtime/load_path_mgr.cpp +++ b/be/src/runtime/load_path_mgr.cpp @@ -174,7 +174,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; } }