summaryrefslogtreecommitdiff
path: root/modules/commands/cs_xop.cpp
diff options
context:
space:
mode:
authorAdam <Adam@anope.org>2011-08-06 19:43:06 -0400
committerAdam <Adam@anope.org>2011-08-06 19:43:06 -0400
commit27912e1e8f209a49057c221275c642640aa4c8ce (patch)
tree4f0a94a4d2ebb9d1183a0a0f24cd1992d5dcdab8 /modules/commands/cs_xop.cpp
parentb678aa64d85618849aaa825c5a844c912a22c8e9 (diff)
Fixed two of the xop log messages
Diffstat (limited to 'modules/commands/cs_xop.cpp')
-rw-r--r--modules/commands/cs_xop.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/commands/cs_xop.cpp b/modules/commands/cs_xop.cpp
index 1b9348026..0fa51a048 100644
--- a/modules/commands/cs_xop.cpp
+++ b/modules/commands/cs_xop.cpp
@@ -361,7 +361,7 @@ class XOPBase : public Command
ci->AddAccess(acc);
bool override = level >= u_level || !access.HasPriv(CA_ACCESS_CHANGE);
- Log(override ? LOG_OVERRIDE : LOG_COMMAND, u, this, ci) << "ADD " << mask << " as level " << level;
+ Log(override ? LOG_OVERRIDE : LOG_COMMAND, u, this, ci) << "ADD " << mask;
FOREACH_MOD(I_OnAccessAdd, OnAccessAdd(ci, u, acc));
source.Reply(("\002%s\002 added to %s %s list."), acc->mask.c_str(), ci->name.c_str(), source.command.c_str());
@@ -519,7 +519,7 @@ class XOPBase : public Command
}
bool override = !ci->HasPriv(u, CA_FOUNDER);
- Log(override ? LOG_OVERRIDE : LOG_COMMAND, u, this, ci) << "CLEAR level " << level;
+ Log(override ? LOG_OVERRIDE : LOG_COMMAND, u, this, ci) << "CLEAR";
for (unsigned i = ci->GetAccessCount(); i > 0; --i)
{