!40807 Modify Log Level

Merge pull request !40807 from jiaorui/log-level
This commit is contained in:
i-robot 2022-08-24 09:31:27 +00:00 committed by Gitee
commit 4376f7d93b
No known key found for this signature in database
GPG Key ID: 173E9B9CA92EEF8F
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;