Remove some log messages

refs #4991
This commit is contained in:
Gunnar Beutner 2017-03-16 14:25:27 +01:00
parent 18e6474f1e
commit f862923dc7
1 changed files with 0 additions and 6 deletions

View File

@ -63,9 +63,6 @@ void RedisWriter::UpdateAllConfigObjects(void)
String typeName = type->GetName();
/* replace into aka delete insert is faster than a full diff */
Log(LogInformation, "RedisWriter")
<< "Flushing icinga:config:" << typeName << " before config dump.";
redisReply *reply1 = reinterpret_cast<redisReply *>(redisCommand(m_Context, "DEL icinga:config:%s", typeName.CStr()));
if (!reply1) {
@ -86,9 +83,6 @@ void RedisWriter::UpdateAllConfigObjects(void)
freeReplyObject(reply1);
Log(LogInformation, "RedisWriter")
<< "Flushing icinga:status:" << typeName << " before config dump.";
redisReply *reply2 = reinterpret_cast<redisReply *>(redisCommand(m_Context, "DEL icinga:status:%s", typeName.CStr()));
if (!reply2) {