Browse Source

fix

pull/1719/head
wangxiaotian22 4 years ago
parent
commit
bd39190c35
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      ge/offline/single_op_parser.cc

+ 1
- 1
ge/offline/single_op_parser.cc View File

@@ -627,7 +627,7 @@ Status SingleOpParser::ParseSingleOpList(const std::string &file, std::vector<Si
} }
} catch (const nlohmann::json::exception &e) { } catch (const nlohmann::json::exception &e) {
REPORT_INNER_ERROR("E19999", "parse singleop file:%s failed, catch exception:%s, current index:%d", REPORT_INNER_ERROR("E19999", "parse singleop file:%s failed, catch exception:%s, current index:%d",
file.c_str(), e.what().c_str(), index);
file.c_str(), e.what(), index);
GELOGE(PARAM_INVALID, "[Parse][OpList] the index:%d of op failed when read json file:%s, exception:%s", GELOGE(PARAM_INVALID, "[Parse][OpList] the index:%d of op failed when read json file:%s, exception:%s",
index, file.c_str(), e.what()); index, file.c_str(), e.what());
return PARAM_INVALID; return PARAM_INVALID;


Loading…
Cancel
Save