From 2b6a6424e2e0614a703b07dd87de99d5d1d62765 Mon Sep 17 00:00:00 2001 From: jiangshuqiang <962978787@qq.com> Date: Thu, 4 Mar 2021 15:26:08 +0800 Subject: [PATCH] fix log level --- mindspore/ccsrc/debug/debugger/proto_exporter.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mindspore/ccsrc/debug/debugger/proto_exporter.cc b/mindspore/ccsrc/debug/debugger/proto_exporter.cc index a0ba4e0b3e..e0e9ba08fe 100644 --- a/mindspore/ccsrc/debug/debugger/proto_exporter.cc +++ b/mindspore/ccsrc/debug/debugger/proto_exporter.cc @@ -361,7 +361,7 @@ void DebuggerProtoExporter::ExportParameters(const FuncGraphPtr &func_graph, deb const ParameterPtr param_ptr = dyn_cast(param); if (param_ptr == nullptr) { - MS_LOG(EXCEPTION) << "Parameter '" << param->ToString() << "' could not cast to parameter."; + MS_LOG(INFO) << "Parameter '" << param->ToString() << "' could not cast to parameter."; } } }