From c2a97d9f3f2d56d889875f9b60d1e2cbc9826d15 Mon Sep 17 00:00:00 2001 From: Adam Date: Sun, 15 Aug 2010 14:08:05 -0400 Subject: Cleanup of various different crashes/inconsistancies --- src/users.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/users.cpp') diff --git a/src/users.cpp b/src/users.cpp index dd21a1ef9..f78c505a9 100644 --- a/src/users.cpp +++ b/src/users.cpp @@ -194,7 +194,7 @@ User::~User() { Anope::string srealname = normalizeBuffer(this->realname); - Alog() << "LOGUSERS: " << this->GetMask() << (ircd->vhost ? " => " : " ") << (ircd->vhost ? this->GetDisplayedHost() : "") << " (" << srealname << ") left the network (" << this->server->GetName() << ")."; + Alog() << "LOGUSERS: " << this->nick << " (" << this->GetIdent() << "@" << this->host << (ircd->vhost ? " => " : "") << (ircd->vhost ? this->GetDisplayedHost() : "") << ") (" << srealname << ") left the network (" << this->server->GetName() << ")."; } FOREACH_MOD(I_OnUserLogoff, OnUserLogoff(this)); -- cgit