forked from mindspore-Ecosystem/mindspore
Don't print error log when group processes status change.
This commit is contained in:
parent
6e463f29d3
commit
f59bdf0f00
|
@ -195,7 +195,7 @@ void DuplexPipe::SignalHandler::SigChildHandler(int sig) {
|
||||||
} else if (WIFCONTINUED(status)) {
|
} else if (WIFCONTINUED(status)) {
|
||||||
DP_INFO << "Child continued, pid: " << pid;
|
DP_INFO << "Child continued, pid: " << pid;
|
||||||
} else {
|
} else {
|
||||||
DP_ERROR << "Wrong child status: " << status << ", pid: " << pid;
|
DP_INFO << "Wrong child status: " << status << ", pid: " << pid;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
} // namespace mindspore
|
} // namespace mindspore
|
||||||
|
|
Loading…
Reference in New Issue