Follow-up to rev. 6edcf5f which introduced a build failure

PiperOrigin-RevId: 256961234
Change-Id: I312d054c5d35413b2e6b061ddfa30c80397b19eb
This commit is contained in:
Christian Blichmann 2019-07-08 05:55:33 -07:00 committed by Copybara-Service
parent 6edcf5f823
commit 2301e05097

View File

@ -34,7 +34,7 @@ void LogServer::Run() {
severity = logging::ERROR;
fatal_string = " FATAL";
}
logging::LogMessage(msg.path().c_str(), msg.line(), severity);
logging::LogMessage log_message(msg.path().c_str(), msg.line(), severity);
log_message.stream()
<< "(sandboxee " << msg.pid() << fatal_string << "): " << msg.message();
}