diff --git a/mindspore/ccsrc/pipeline/jit/parse/function_block.cc b/mindspore/ccsrc/pipeline/jit/parse/function_block.cc index 919bb63dc1..971872b023 100644 --- a/mindspore/ccsrc/pipeline/jit/parse/function_block.cc +++ b/mindspore/ccsrc/pipeline/jit/parse/function_block.cc @@ -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; } } }