Browse Source

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

tags/v1.0.0
Zhang Qinghua 5 years ago
parent
commit
f59bdf0f00
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      mindspore/ccsrc/common/duplex_pipe.cc

+ 1
- 1
mindspore/ccsrc/common/duplex_pipe.cc 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

Loading…
Cancel
Save