!5711 Don't print error log when group processes status change.

Merge pull request !5711 from 张清华/master
This commit is contained in:
mindspore-ci-bot 2020-09-03 18:27:13 +08:00 committed by Gitee
commit 12b0bbe02f
1 changed files with 1 additions and 1 deletions

View File

@ -195,7 +195,7 @@ void DuplexPipe::SignalHandler::SigChildHandler(int sig) {
} else if (WIFCONTINUED(status)) {
DP_INFO << "Child continued, pid: " << pid;
} else {
DP_ERROR << "Wrong child status: " << status << ", pid: " << pid;
DP_INFO << "Wrong child status: " << status << ", pid: " << pid;
}
}
} // namespace mindspore