]> granicus.if.org Git - icinga2/commitdiff
Change log level for some messages.
authorGunnar Beutner <gunnar.beutner@netways.de>
Thu, 19 Sep 2013 13:14:32 +0000 (15:14 +0200)
committerGunnar Beutner <gunnar.beutner@netways.de>
Thu, 19 Sep 2013 13:14:32 +0000 (15:14 +0200)
components/cluster/clustercomponent.cpp

index ed777386f461650436f6a1d5c4cc4037c35995e5..9264018e2ce396f2e2d4c395148f991a5c1384f3 100644 (file)
@@ -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;
                                        }