change the log level from info to debug when insert overflow check operators

This commit is contained in:
guoqi 2022-05-11 11:00:13 +08:00
parent 12f1291d5e
commit cbb3dc8ff1
1 changed files with 2 additions and 3 deletions

View File

@ -860,9 +860,8 @@ void KernelAdjust::InsertOverflowCheckOperations(const std::shared_ptr<session::
}
}
// Debug info
for (const auto &param : dynamic_loss_scale_param_list) {
MS_LOG(INFO) << "dynamic_loss_scale_param_list:" << param->DebugString();
MS_LOG(DEBUG) << "dynamic_loss_scale_param_list:" << param->DebugString();
}
if (specify_param != nullptr) {
@ -873,7 +872,7 @@ void KernelAdjust::InsertOverflowCheckOperations(const std::shared_ptr<session::
}
for (const auto &node : kernel_graph_ptr->execution_order()) {
MS_LOG(INFO) << "After insert Overflow Status Order:" << node->DebugString();
MS_LOG(DEBUG) << "After insert Overflow Status Order:" << node->DebugString();
}
MS_LOG(INFO) << "End Insert Overflow Check Operations.";
}