diff --git a/be/src/olap/options.cpp b/be/src/olap/options.cpp index 8668f8319d10e6..6e4cb61e3d0182 100644 --- a/be/src/olap/options.cpp +++ b/be/src/olap/options.cpp @@ -283,7 +283,10 @@ Status parse_conf_cache_paths(const std::string& config_path, std::vector& cache_paths std::unordered_set cache_path_set; Status rest = doris::parse_conf_cache_paths(doris::config::file_cache_path, cache_paths); if (!rest) { - LOG(FATAL) << "parse config file cache path failed, path=" - << doris::config::file_cache_path; + LOG(FATAL) << "parse config file cache path failed, path=" << doris::config::file_cache_path + << ", reason=" << rest.msg(); exit(-1); } std::vector file_cache_init_threads;