diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/channels.cpp | 1 |
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; |