diff options
author | DukePyrolator <DukePyrolator@5417fbe8-f217-4b02-8779-1006273d7864> | 2010-01-31 06:15:29 +0000 |
---|---|---|
committer | DukePyrolator <DukePyrolator@5417fbe8-f217-4b02-8779-1006273d7864> | 2010-01-31 06:15:29 +0000 |
commit | aa4b3e256377030d291fc2d5f4db94985ce04395 (patch) | |
tree | 993302c0cbe754612f69c22bbbc57d00220cabd4 /src/nickcore.cpp | |
parent | 47504c9de5accda45a19627fd2b6ec13baa6ba95 (diff) |
replaced the alog() command with a new type-safe and stream-based Alog()
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@2777 5417fbe8-f217-4b02-8779-1006273d7864
Diffstat (limited to 'src/nickcore.cpp')
-rw-r--r-- | src/nickcore.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nickcore.cpp b/src/nickcore.cpp index b009c25f8..0073e0d32 100644 --- a/src/nickcore.cpp +++ b/src/nickcore.cpp @@ -65,7 +65,7 @@ NickCore::~NickCore() nclists[HASH(this->display)] = this->next; /* Log .. */ - alog("%s: deleting nickname group %s", Config.s_NickServ, this->display); + Alog() << Config.s_NickServ << ": deleting nickname group " << this->display; /* Now we can safely free it. */ delete [] this->display; |