1
0
mirror of https://github.com/anope/anope.git synced 2026-07-05 11:03:12 +02:00

Fixed some minor punctuation and logging

This commit is contained in:
lethality
2010-09-18 03:35:33 +01:00
parent 227909e2cf
commit 5ec605e424
4 changed files with 6 additions and 6 deletions
+1 -1
View File
@@ -685,7 +685,7 @@ User *do_nick(const Anope::string &source, const Anope::string &nick, const Anop
}
}
Log(user, "connect") << (ircd->nickvhost && !vhost2.empty() ? Anope::string("(") + vhost2 + ")" : "") << ") (" << user->realname << ") " << (user->ip() ? Anope::string("[") + user->ip.addr() + "] " : "") << "connected to the network (" << serv->GetName() << ")";
Log(user, "connect") << (ircd->nickvhost && !vhost2.empty() ? Anope::string("(") + vhost2 + ")" : "") << " (" << user->realname << ") " << (user->ip() ? Anope::string("[") + user->ip.addr() + "] " : "") << "connected to the network (" << serv->GetName() << ")";
EventReturn MOD_RESULT;
FOREACH_RESULT(I_OnPreUserConnect, OnPreUserConnect(user));