From: Gunnar Beutner Date: Thu, 19 Sep 2013 13:14:32 +0000 (+0200) Subject: Change log level for some messages. X-Git-Tag: v0.0.3~464 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=c519deb2575c6027edd0aecd83c074d138b281e6;p=icinga2 Change log level for some messages. --- diff --git a/components/cluster/clustercomponent.cpp b/components/cluster/clustercomponent.cpp index ed777386f..9264018e2 100644 --- a/components/cluster/clustercomponent.cpp +++ b/components/cluster/clustercomponent.cpp @@ -461,7 +461,7 @@ void ClusterComponent::ReplayLog(const Endpoint::Ptr& endpoint, const Stream::Pt DynamicType::Ptr dtype = DynamicType::GetByName(type); if (!dtype) { - Log(LogWarning, "cluster", "Invalid type in security attribute: " + type); + Log(LogDebug, "cluster", "Invalid type in security attribute: " + type); continue; } @@ -469,7 +469,7 @@ void ClusterComponent::ReplayLog(const Endpoint::Ptr& endpoint, const Stream::Pt secobj = dtype->GetObject(name); if (!secobj) { - Log(LogWarning, "cluster", "Invalid object name in security attribute: " + name + " (of type '" + type + "')"); + Log(LogDebug, "cluster", "Invalid object name in security attribute: " + name + " (of type '" + type + "')"); continue; }