diff options
author | Adam <Adam@anope.org> | 2010-08-15 14:08:05 -0400 |
---|---|---|
committer | Adam <Adam@anope.org> | 2010-08-15 14:08:05 -0400 |
commit | c2a97d9f3f2d56d889875f9b60d1e2cbc9826d15 (patch) | |
tree | 5530abf6bdb54f8c32b1f681f6367536a412e262 /src/users.cpp | |
parent | a950ed8cabfeca55c909f02412b1788bd386dcff (diff) |
Cleanup of various different crashes/inconsistancies
Diffstat (limited to 'src/users.cpp')
-rw-r--r-- | src/users.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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)); |