diff --git a/cpp/src/db/Utils.cpp b/cpp/src/db/Utils.cpp index cbed4c6646..26f93563dc 100644 --- a/cpp/src/db/Utils.cpp +++ b/cpp/src/db/Utils.cpp @@ -148,7 +148,9 @@ Status GetTableFilePath(const DBMetaOptions& options, meta::TableFileSchema& tab } std::string msg = "Table file doesn't exist: " + file_path; - ENGINE_LOG_ERROR << msg; + ENGINE_LOG_ERROR << msg << " in path: " << options.path + << " for table: " << table_file.table_id_; + return Status(DB_ERROR, msg); }