1
0
mirror of https://github.com/anope/anope.git synced 2026-07-04 01:43:12 +02:00

Never log debug levels >= 2 using a log block

This commit is contained in:
Adam
2012-11-10 13:55:06 -05:00
parent b51f60cc1e
commit ad3d1d381a
+4
View File
@@ -323,6 +323,10 @@ bool LogInfo::HasType(LogType ltype, const Anope::string &type) const
return debug ? true : this->RawIO;
case LOG_DEBUG:
return debug ? true : this->Debug;
case LOG_DEBUG_2:
case LOG_DEBUG_3:
case LOG_DEBUG_4:
break;
case LOG_MODULE:
case LOG_NORMAL:
default: