Merge "libprocinfo: remove error msg for unknown process state."

This commit is contained in:
Yabin Cui 2020-01-21 19:40:15 +00:00 committed by Gerrit Code Review
commit 63f25aa3fa
1 changed files with 0 additions and 1 deletions

View File

@ -59,7 +59,6 @@ static ProcessState parse_state(const char* state) {
case 'Z':
return kProcessStateZombie;
default:
LOG(ERROR) << "unknown process state: " << *state;
return kProcessStateUnknown;
}
}