fix config::load error message

This commit is contained in:
Xiao Tianci 2020-10-26 11:07:42 +08:00
parent 6406cd2a3c
commit e3c4a54fef
1 changed files with 1 additions and 1 deletions

View File

@ -97,7 +97,7 @@ int32_t get_callback_timeout() { return _config->callback_timeout(); }
bool load(std::string file) {
Status rc = _config->LoadFile(file);
if (rc.IsError()) {
MS_LOG(ERROR) << "Configuration file loads failed: " << file;
MS_LOG(ERROR) << rc << file;
return false;
}
return true;