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:
parent
bba12d0401
commit
8908b62a48
@ -305,8 +305,6 @@ bool SubProcess::WaitInternal(int* status) {
|
|||||||
if (wait_status == WAIT_OBJECT_0) {
|
if (wait_status == WAIT_OBJECT_0) {
|
||||||
DWORD process_exit_code = 0;
|
DWORD process_exit_code = 0;
|
||||||
if (GetExitCodeProcess(pi_.hProcess, &process_exit_code)) {
|
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);
|
*status = static_cast<int>(process_exit_code);
|
||||||
} else {
|
} else {
|
||||||
LOG(FATAL) << "Wait failed with code: " << GetLastError();
|
LOG(FATAL) << "Wait failed with code: " << GetLastError();
|
||||||
|
Loading…
Reference in New Issue
Block a user