log level

This commit is contained in:
jiaorui 2022-08-24 14:17:14 +08:00
parent 9afb5b17a5
commit 1d935b0a28
1 changed files with 2 additions and 2 deletions

View File

@ -169,8 +169,8 @@ std::vector<KernelWithIndex> GetAllOutputWithIndexInner(const AnfNodePtr &node)
return ret_empty;
}
MS_LOG(INFO) << "Output node: " << output_with_index.first->fullname_with_scope()
<< " with output index: " << output_with_index.second;
MS_LOG(DEBUG) << "Output node: " << output_with_index.first->fullname_with_scope()
<< " with output index: " << output_with_index.second;
ret.push_back(output_with_index);
}
return ret;