1
0
mirror of https://github.com/anope/anope.git synced 2026-07-01 13:06:38 +02:00

Bug #1275 - Don't log absolutely everything sent to operserv, most of its commands already have their own logs

This commit is contained in:
Adam
2011-06-17 13:34:47 -04:00
parent df971befb2
commit 48e995ddf2
2 changed files with 0 additions and 2 deletions
-1
View File
@@ -35,7 +35,6 @@ class CommandOSHelp : public Command
for (CommandMap::const_iterator it = operserv->Bot()->Commands.begin(), it_end = operserv->Bot()->Commands.end(); it != it_end; ++it)
if (!Config->HidePrivilegedCommands || it->second->permission.empty() || u->HasCommand(it->second->permission))
it->second->OnServHelp(source);
source.Reply(_("\002Notice:\002 All commands sent to %s are logged!"), Config->s_OperServ.c_str());
}
};