Fix log message formatting for object version

refs #10355
This commit is contained in:
Michael Friedrich 2015-10-15 16:52:49 +02:00
parent 464e7f0e9f
commit 934fb64b9e
1 changed files with 2 additions and 2 deletions

View File

@ -140,8 +140,8 @@ Value ApiListener::ConfigUpdateObjectAPIHandler(const MessageOrigin::Ptr& origin
if (objVersion <= object->GetVersion()) {
Log(LogNotice, "ApiListener")
<< "Discarding config update for object '" << object->GetName()
<< "': Object version " << object->GetVersion()
<< " is more recent than the received version " << objVersion << ".";
<< "': Object version " << std::fixed << object->GetVersion()
<< " is more recent than the received version " << std::fixed << objVersion << ".";
return Empty;
}