Browse Source

analyzer log

tags/v1.3.0
liyihan2@huawei.com 4 years ago
parent
commit
7e4f82222e
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      ge/analyzer/analyzer.cc

+ 2
- 2
ge/analyzer/analyzer.cc View File

@@ -155,7 +155,7 @@ std::shared_ptr<GraphInfo> Analyzer::GetJsonObject(uint64_t session_id, uint64_t
std::lock_guard<std::recursive_mutex> lg(mutex_);
auto iter = graph_infos_.find(session_id);
if (iter == graph_infos_.end()) {
GELOGE(PARAM_INVALID, "[Check][Session_id]session_id:%lu does not exist! graph_id:%lu.", session_id, graph_id);
GELOGE(PARAM_INVALID, "[Check][Session_id]session_id:%lu does not exist! graph_id:%lu", session_id, graph_id);
return nullptr;
} else {
auto iter1 = (iter->second).find(graph_id);
@@ -195,7 +195,7 @@ ge::Status Analyzer::CreateAnalyzerFile() {
}
is_json_file_create_ = true;

GELOGD("success to create analyzer file[%s]!", json_file_name_.c_str());
GELOGD("success to create analyzer file[%s].", json_file_name_.c_str());
return SUCCESS;
}



Loading…
Cancel
Save