Browse Source

Modify log level to INFO for printing isolated node info.

tags/v1.2.0-rc1
Zhang Qinghua 4 years ago
parent
commit
b8d84ba106
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