Don't LOG(INFO) process exit status

AFAICT this was just a leftover logging statement.

PiperOrigin-RevId: 348640692
Change-Id: Ib3dad38a9dcc5e6337210ab289faebea48168804
This commit is contained in:
Sanjoy Das 2020-12-22 08:47:44 -08:00 committed by TensorFlower Gardener
parent bba12d0401
commit 8908b62a48

View File

@ -305,8 +305,6 @@ bool SubProcess::WaitInternal(int* status) {
if (wait_status == WAIT_OBJECT_0) {
DWORD process_exit_code = 0;
if (GetExitCodeProcess(pi_.hProcess, &process_exit_code)) {
LOG(INFO) << "SubProcess ended with return code: " << process_exit_code
<< std::endl;
*status = static_cast<int>(process_exit_code);
} else {
LOG(FATAL) << "Wait failed with code: " << GetLastError();