From c519deb2575c6027edd0aecd83c074d138b281e6 Mon Sep 17 00:00:00 2001 From: Gunnar Beutner Date: Thu, 19 Sep 2013 15:14:32 +0200 Subject: [PATCH] Change log level for some messages. --- components/cluster/clustercomponent.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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; } -- 2.40.0