mirror of https://github.com/Icinga/icinga2.git
Remove debug log message
This commit is contained in:
parent
3da4cef1e6
commit
fcb3752973
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue