From f59bdf0f00ee3e9d3d3b9ddbae5492f7d370bea0 Mon Sep 17 00:00:00 2001 From: Zhang Qinghua Date: Thu, 3 Sep 2020 17:19:52 +0800 Subject: [PATCH] Don't print error log when group processes status change. --- mindspore/ccsrc/common/duplex_pipe.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mindspore/ccsrc/common/duplex_pipe.cc b/mindspore/ccsrc/common/duplex_pipe.cc index 64eeb174e3..228df781c3 100644 --- a/mindspore/ccsrc/common/duplex_pipe.cc +++ b/mindspore/ccsrc/common/duplex_pipe.cc @@ -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