From 0cf8d733953fd9c856c0519f2bccc94a3cb2eafa Mon Sep 17 00:00:00 2001 From: Adam Date: Mon, 5 Nov 2012 23:12:38 -0500 Subject: Added log messages for all of the other chanserv commands that should be logged --- modules/commands/cs_unban.cpp | 2 ++ 1 file changed, 2 insertions(+) (limited to 'modules/commands/cs_unban.cpp') diff --git a/modules/commands/cs_unban.cpp b/modules/commands/cs_unban.cpp index aaa336438..b60dfebcf 100644 --- a/modules/commands/cs_unban.cpp +++ b/modules/commands/cs_unban.cpp @@ -53,6 +53,8 @@ class CommandCSUnban : public Command return; } + Log(LOG_COMMAND, source, this, ci) << "to unban " << u2->nick; + common_unban(ci, u2, source.GetUser() == u2); if (u2 == source.GetUser()) source.Reply(_("You have been unbanned from \002%s\002."), ci->c->name.c_str()); -- cgit