!29207 Change log level.

Merge pull request !29207 from liangzelang/dev_master_1
This commit is contained in:
i-robot 2022-01-18 01:17:06 +00:00 committed by Gitee
commit dd198f2a30
No known key found for this signature in database
GPG Key ID: 173E9B9CA92EEF8F
1 changed files with 2 additions and 2 deletions

View File

@ -798,14 +798,14 @@ class AscendAutoMonadConverter {
if (AnfAlgo::CheckPrimitiveType(*iter, prim::kPrimLabelGoto) ||
AnfAlgo::CheckPrimitiveType(*iter, prim::kPrimLabelSwitch) ||
AnfAlgo::CheckPrimitiveType(*iter, prim::kPrimLabelSet)) {
MS_LOG(ERROR) << "this node is Labelxxxx, do not found iter end.";
MS_LOG(INFO) << "this node is Labelxxxx, do not found iter end.";
break;
}
AnfAlgo::SetNodeAttr(ITEREND, prim::kValueOne, *iter);
MS_LOG(INFO) << "Set profiling iter-end points: " << (*iter)->DebugString();
return;
}
MS_LOG(ERROR) << "Do not find iter_end point";
MS_LOG(WARNING) << "Do not find iter_end point";
}
// Find all iteration end points recursively.