1
0
Fork 0

Fix a wrong log message.

This commit is contained in:
Max Neunhoeffer 2017-02-10 17:44:18 +01:00
parent 241cc89c64
commit dad4f34f7a
1 changed files with 2 additions and 1 deletions

View File

@ -1533,7 +1533,8 @@ AgencyCommResult AgencyComm::send(
if (cc == nullptr) {
// nullptr only happens during controlled shutdown
result._message = "could not send request to agency because of shutdown";
LOG_TOPIC(TRACE, Logger::AGENCYCOMM) << "could not send request to agency";
LOG_TOPIC(TRACE, Logger::AGENCYCOMM)
<< "could not send request to agency because of shutdown";
return result;
}