From 7e4f82222e7ba0d3f40b81ab8220249983f62328 Mon Sep 17 00:00:00 2001 From: "liyihan2@huawei.com" Date: Tue, 16 Mar 2021 14:15:07 +0800 Subject: [PATCH] analyzer log --- ge/analyzer/analyzer.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ge/analyzer/analyzer.cc b/ge/analyzer/analyzer.cc index 2d38786b..de95193b 100755 --- a/ge/analyzer/analyzer.cc +++ b/ge/analyzer/analyzer.cc @@ -155,7 +155,7 @@ std::shared_ptr Analyzer::GetJsonObject(uint64_t session_id, uint64_t std::lock_guard 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; }