Browse Source

fix log level

tags/v1.2.0-rc1
jiangshuqiang 5 years ago
parent
commit
2b6a6424e2
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      mindspore/ccsrc/debug/debugger/proto_exporter.cc

+ 1
- 1
mindspore/ccsrc/debug/debugger/proto_exporter.cc View File

@@ -361,7 +361,7 @@ void DebuggerProtoExporter::ExportParameters(const FuncGraphPtr &func_graph, deb

const ParameterPtr param_ptr = dyn_cast<Parameter>(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.";
}
}
}


Loading…
Cancel
Save