diff options
Diffstat (limited to 'modules/chanserv/sync.cpp')
-rw-r--r-- | modules/chanserv/sync.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/chanserv/sync.cpp b/modules/chanserv/sync.cpp index 9f9ba4ff7..c532d4fad 100644 --- a/modules/chanserv/sync.cpp +++ b/modules/chanserv/sync.cpp @@ -52,7 +52,7 @@ class CommandCSSync : public Command } bool override = !source.AccessFor(ci).HasPriv("ACCESS_CHANGE") && source.HasPriv("chanserv/administration"); - Log(override ? LOG_OVERRIDE : LOG_COMMAND, source, this, ci); + logger.Command(override ? LogType::OVERRIDE : LogType::COMMAND, source, ci, _("{source} used {command} on {channel}")); for (Channel::ChanUserList::iterator it = ci->c->users.begin(), it_end = ci->c->users.end(); it != it_end; ++it) ci->c->SetCorrectModes(it->second->user, true); |