Improve log message for ignored config updates

fixes #12623
This commit is contained in:
Gunnar Beutner 2016-09-02 09:35:35 +02:00
parent 58cdce8d7c
commit 288b354d11
1 changed files with 1 additions and 1 deletions

View File

@ -71,7 +71,7 @@ Value ApiListener::ConfigUpdateObjectAPIHandler(const MessageOrigin::Ptr& origin
if (!listener->GetAcceptConfig()) {
Log(LogWarning, "ApiListener")
<< "Ignoring config update for object '" << objName << "' of type '" << objType << "'. '" << listener->GetName() << "' does not accept config.";
<< "Ignoring config update from '" << origin->FromClient->GetIdentity() << "' for object '" << objName << "' of type '" << objType << "'. '" << listener->GetName() << "' does not accept config.";
return Empty;
}