Remove debug log message

This commit is contained in:
Jean Flach 2018-11-13 16:43:50 +01:00 committed by Michael Friedrich
parent 3da4cef1e6
commit fcb3752973
1 changed files with 1 additions and 4 deletions

View File

@ -561,12 +561,9 @@ void RedisWriter::SendConfigDelete(const ConfigObject::Ptr& object)
void RedisWriter::SendStatusUpdate(const ConfigObject::Ptr& object)
{
//TODO: This is probably uncesessary?
Checkable::Ptr checkable = dynamic_pointer_cast<Checkable>(object);
if (!checkable) {
Log(LogCritical, "DEBUG") << "THIS IS NOT A CHECKABLE, IT'S A " << object->GetReflectionType()->GetName();
if (!checkable)
return;
}
bool isHost;
String streamname;