From 8492f3dd7f6665c66ba05662052e1c3bcf8ad1b7 Mon Sep 17 00:00:00 2001 From: simson <526422051@qq.com> Date: Thu, 23 Apr 2020 18:49:19 +0800 Subject: [PATCH] modify log level of context --- mindspore/ccsrc/utils/context/ms_context.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mindspore/ccsrc/utils/context/ms_context.cc b/mindspore/ccsrc/utils/context/ms_context.cc index bee5875f6..569285f5d 100644 --- a/mindspore/ccsrc/utils/context/ms_context.cc +++ b/mindspore/ccsrc/utils/context/ms_context.cc @@ -78,7 +78,7 @@ MsContext::MsContext(const std::string& policy, const std::string& target) { enable_dynamic_mem_pool_ = true; graph_memory_max_size_ = "0"; variable_memory_max_size_ = "0"; - MS_LOG(INFO) << "Create context with backend policy:" << policy << ", device target:" << target << "."; + MS_LOG(DEBUG) << "Create context with backend policy:" << policy << ", device target:" << target << "."; } std::shared_ptr MsContext::GetInstance() { -- GitLab