From 539550e40ac50acb2028da9b813d41934a402a85 Mon Sep 17 00:00:00 2001 From: candanzg Date: Thu, 14 May 2020 16:08:38 +0800 Subject: [PATCH] implicit type conversion Signed-off-by: candanzg --- mindspore/ccsrc/pipeline/pipeline.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mindspore/ccsrc/pipeline/pipeline.cc b/mindspore/ccsrc/pipeline/pipeline.cc index 63c522ce7b..917699f447 100644 --- a/mindspore/ccsrc/pipeline/pipeline.cc +++ b/mindspore/ccsrc/pipeline/pipeline.cc @@ -244,13 +244,13 @@ void ExecutorPy::DelNetRes(const std::string &id) { auto tmp_info = info_; for (auto &item : tmp_info) { if (item.first.find(id) != string::npos) { - MS_LOG(INFO) << "Delete network res:" << item.first; + MS_LOG(DEBUG) << "Delete network res:" << item.first; (void)info_.erase(item.first); flag = true; } } - MS_LOG(INFO) << "Delete flag:" << flag; + MS_LOG(DEBUG) << "Delete flag:" << flag; #ifdef ENABLE_GE if (flag && info_.size() == 0) { // because Ge only support one Session exist at the same time ,so we delete the old one