Skip to content

Commit

Permalink
[log](load) print reason when LoadPathMgr failed to delete file (#38235)
Browse files Browse the repository at this point in the history
print reason when LoadPathMgr failed to delete file
  • Loading branch information
kaijchen authored and dataroaring committed Jul 24, 2024
1 parent 1112393 commit 31bc598
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion be/src/runtime/load_path_mgr.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
}

Expand Down

0 comments on commit 31bc598

Please sign in to comment.