diff --git a/src/chatcleaner/capsfloodcheck.cpp b/src/chatcleaner/capsfloodcheck.cpp index 2003aca3..a2b47453 100644 --- a/src/chatcleaner/capsfloodcheck.cpp +++ b/src/chatcleaner/capsfloodcheck.cpp @@ -17,7 +17,7 @@ bool CapsFloodCheck::run(QString msg) else return false; } else { - qDebug() << "The current Caps Flood RegExp is invalid" << endl; +// qDebug() << "The current Caps Flood RegExp is invalid" << endl; return false; } } diff --git a/src/chatcleaner/letterrepeatingcheck.cpp b/src/chatcleaner/letterrepeatingcheck.cpp index 711b5b05..72f9f6ad 100644 --- a/src/chatcleaner/letterrepeatingcheck.cpp +++ b/src/chatcleaner/letterrepeatingcheck.cpp @@ -19,7 +19,7 @@ bool LetterRepeatingCheck::run(QString msg) } } else { - qDebug() << "The current Letter Repeating RegExp is invalid" << endl; +// qDebug() << "The current Letter Repeating RegExp is invalid" << endl; return false; } } diff --git a/src/chatcleaner/messagefilter.cpp b/src/chatcleaner/messagefilter.cpp index b9d0ed7d..7f5e9b88 100644 --- a/src/chatcleaner/messagefilter.cpp +++ b/src/chatcleaner/messagefilter.cpp @@ -205,7 +205,7 @@ void MessageFilter::cleanKickCounterList() while (it.hasNext()) { it.next(); if(timer.elapsed().total_seconds()-it.value().lastKickTimestamp > config->readConfigInt("SecondsToForgetAboutKick")) { - qDebug() << it.key() << "removed from kick counter list" << endl; +// qDebug() << it.key() << "removed from kick counter list" << endl; myClientKickCounterList.remove(it.key()); } } diff --git a/src/chatcleaner/textfloodcheck.cpp b/src/chatcleaner/textfloodcheck.cpp index b4e71f72..44968f32 100644 --- a/src/chatcleaner/textfloodcheck.cpp +++ b/src/chatcleaner/textfloodcheck.cpp @@ -88,6 +88,6 @@ void TextFloodCheck::cleanMsgTimesList() { void TextFloodCheck::removeNickFromList(unsigned playerId) { - qDebug() << "id " << playerId << "removed from textfloodcheck list" << endl; +// qDebug() << "id " << playerId << "removed from textfloodcheck list" << endl; msgTimesList.remove(playerId); }