diff options
author | Adam <Adam@anope.org> | 2011-06-17 13:34:47 -0400 |
---|---|---|
committer | Adam <Adam@anope.org> | 2011-06-17 13:34:47 -0400 |
commit | 48e995ddf2cd30a05222a51e665c02b1e7ae567a (patch) | |
tree | 5975f4e195a2cf17b1bdae7c3e20db97f9aa9187 /modules/core/os_help.cpp | |
parent | df971befb2ec95d69b7bb5bce49f4105ee916c2a (diff) |
Bug #1275 - Don't log absolutely everything sent to operserv, most of its commands already have their own logs
Diffstat (limited to 'modules/core/os_help.cpp')
-rw-r--r-- | modules/core/os_help.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/modules/core/os_help.cpp b/modules/core/os_help.cpp index 764443035..3bd047d72 100644 --- a/modules/core/os_help.cpp +++ b/modules/core/os_help.cpp @@ -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()); } }; |