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 ffe7e418604 [log](load) print reason when LoadPathMgr failed to delete
file (#38235)
ffe7e418604 is described below
commit ffe7e41860416ada9706e0c6b86becbbd3694e5f
Author: Kaijie Chen <[email protected]>
AuthorDate: Tue Jul 23 16:08:23 2024 +0800
[log](load) print reason when LoadPathMgr failed to delete file (#38235)
print reason when LoadPathMgr failed to delete file
---
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 f961fa9b7ec..f1899aadb28 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;
}
}
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]