summaryrefslogtreecommitdiff
path: root/src/channels.cpp
diff options
context:
space:
mode:
authorw00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7>2008-07-12 21:14:33 +0000
committerw00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7>2008-07-12 21:14:33 +0000
commit6f4b5cbc450ca08c022e02de6495673c710d7667 (patch)
treec0e71d8ee0313351ffc744b6384ea989c4e5bff9 /src/channels.cpp
parent432bfa9dfab698d35c618e648340567bdd17610c (diff)
Debug
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@9990 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/channels.cpp')
-rw-r--r--src/channels.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/channels.cpp b/src/channels.cpp
index e9d7f4a27..f169efb87 100644
--- a/src/channels.cpp
+++ b/src/channels.cpp
@@ -467,6 +467,7 @@ bool Channel::IsExtBanned(const std::string &str, char type)
// Iterate past char and : to get to the mask without doing a data copy(!)
std::string maskptr = i->data.substr(2);
+ ServerInstance->Logs->Log("EXTBANS", DEBUG, "Checking %s against %s, type is %c", str.c_str(), maskptr.c_str(), type);
if (match(str, maskptr))
return true;