Browse Source

fix config::load error message

tags/v1.1.0
Xiao Tianci 5 years ago
parent
commit
e3c4a54fef
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      mindspore/ccsrc/minddata/dataset/api/config.cc

+ 1
- 1
mindspore/ccsrc/minddata/dataset/api/config.cc 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;


Loading…
Cancel
Save