diff --git a/mindspore/ccsrc/common/duplex_pipe.cc b/mindspore/ccsrc/common/duplex_pipe.cc index 1aaae5840de33f792ef4825c78f9b8147fe97e72..7ca1667eb48019e792ad80e518d1426fca39902b 100644 --- a/mindspore/ccsrc/common/duplex_pipe.cc +++ b/mindspore/ccsrc/common/duplex_pipe.cc @@ -184,7 +184,7 @@ void DuplexPipe::SignalHandler::SigChildHandler(int sig) { int status; auto pid = waitpid(child_pid_, &status, WNOHANG | WUNTRACED); if (WIFEXITED(status)) { - DP_ERROR << "Child exited, status: " << WEXITSTATUS(status) << ", pid: " << pid; + DP_INFO << "Child exited, status: " << WEXITSTATUS(status) << ", pid: " << pid; if (!dp_.expired()) { dp_.lock()->Close(); } @@ -194,7 +194,7 @@ void DuplexPipe::SignalHandler::SigChildHandler(int sig) { // which caused by MPI_Finalize() never returned. exit(-1); } else if (WIFSTOPPED(status)) { - DP_ERROR << "Child stopped, sig: " << WSTOPSIG(status) << ", pid: " << pid; + DP_INFO << "Child stopped, sig: " << WSTOPSIG(status) << ", pid: " << pid; } else if (WIFSIGNALED(status)) { DP_INFO << "Child not exited, signaled, sig: " << WTERMSIG(status) << ", pid: " << pid; } else if (WIFCONTINUED(status)) {