Browse Source

!12890 Modify log level to INFO for printing isolated node info.

From: @zh_qh
Reviewed-by: @ginfung,@stsuteng
Signed-off-by: @ginfung,@stsuteng
tags/v1.2.0-rc1
mindspore-ci-bot Gitee 5 years ago
parent
commit
54bbc841a4
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      mindspore/ccsrc/pipeline/jit/parse/function_block.cc

+ 1
- 1
mindspore/ccsrc/pipeline/jit/parse/function_block.cc View File

@@ -396,7 +396,7 @@ void FunctionBlock::FindIsolatedNodes() {
if (used.find(node) == used.end() && CanBeIsolatedNode(var_name, node)) {
// We don't call AddIsolatedNode(node) anymore.
// If need, to call FindIsolatedNodes() in appropriate place.
MS_LOG(ERROR) << "Isolated node found(NoUse), node: " << node->DebugString(2) << ", var_name: " << var_name;
MS_LOG(INFO) << "Isolated node found(NoUse), node: " << node->DebugString(2) << ", var_name: " << var_name;
}
}
}


Loading…
Cancel
Save