Change log level for some messages.

This commit is contained in:
Gunnar Beutner 2013-09-19 15:14:32 +02:00
parent 6a1ce0d9b9
commit c519deb257

View 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;
}