From b8d84ba10696f6890c5b47b3d5a39b99e8718dc2 Mon Sep 17 00:00:00 2001 From: Zhang Qinghua Date: Thu, 4 Mar 2021 19:58:20 +0800 Subject: [PATCH] Modify log level to INFO for printing isolated node info. --- mindspore/ccsrc/pipeline/jit/parse/function_block.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } } }