diff --git a/lib/icinga/clusterevents.cpp b/lib/icinga/clusterevents.cpp index 4e453257f..4d8783a39 100644 --- a/lib/icinga/clusterevents.cpp +++ b/lib/icinga/clusterevents.cpp @@ -989,7 +989,7 @@ Value ClusterEvents::ExecutedCommandAPIHandler(const MessageOrigin::Ptr& origin, if (!params->Contains("execution")) { Log(LogNotice, "ClusterEvents") << "Discarding 'update executions API handler' message for checkable '" << checkable->GetName() - << "' from '" << origin->FromClient->GetIdentity() << "': Execution UUID not found."; + << "' from '" << origin->FromClient->GetIdentity() << "': Execution UUID missing."; return Empty; } String uuid = params->Get("execution"); @@ -998,7 +998,7 @@ Value ClusterEvents::ExecutedCommandAPIHandler(const MessageOrigin::Ptr& origin, if (!executions) { Log(LogNotice, "ClusterEvents") << "Discarding 'update executions API handler' message for checkable '" << checkable->GetName() - << "' from '" << origin->FromClient->GetIdentity() << "': No executions available."; + << "' from '" << origin->FromClient->GetIdentity() << "': Execution '" << uuid << "' missing."; return Empty; } @@ -1006,7 +1006,7 @@ Value ClusterEvents::ExecutedCommandAPIHandler(const MessageOrigin::Ptr& origin, if (!execution) { Log(LogNotice, "ClusterEvents") << "Discarding 'update executions API handler' message for checkable '" << checkable->GetName() - << "' from '" << origin->FromClient->GetIdentity() << "': Execution '" << uuid << "' not found."; + << "' from '" << origin->FromClient->GetIdentity() << "': Execution '" << uuid << "' missing."; return Empty; }