diff options
| author | 2006-10-27 20:09:15 +0000 | |
|---|---|---|
| committer | 2006-10-27 20:09:15 +0000 | |
| commit | bfdb4a75ff77278b6f9819677ffc94d877f4d62a (patch) | |
| tree | 1803192fc747483299ae3a36641ddb5b167b8ab5 /src/channels.cpp | |
| parent | When loading, dont try and free the qa modes, we havent allocated them yet (diff) | |
<pid file> is no longer a manditory tag (thanks dotslasher)
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@5556 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/channels.cpp')
| -rw-r--r-- | src/channels.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/channels.cpp b/src/channels.cpp index de698883f..9ef1180c6 100644 --- a/src/channels.cpp +++ b/src/channels.cpp @@ -1009,12 +1009,16 @@ void chanrec::SetPrefix(userrec* user, char prefix, unsigned int prefix_value, b n->second.erase(x); } } + ServerInstance->Log(DEBUG,"Added prefix %c to %s for %s, prefixlist size is now %d", prefix, this->name, user->nick, prefixes.size()); } void chanrec::RemoveAllPrefixes(userrec* user) { prefixlist::iterator n = prefixes.find(user); if (n != prefixes.end()) + { + ServerInstance->Log(DEBUG,"Removed prefixes from %s for %s, prefixlist size is now %d", this->name, user->nick, prefixes.size()); prefixes.erase(n); + } } |
