diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/snomasks.cpp | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/src/snomasks.cpp b/src/snomasks.cpp index fd6a2709a..98f16528e 100644 --- a/src/snomasks.cpp +++ b/src/snomasks.cpp @@ -124,12 +124,9 @@ void Snomask::Flush() void Snomask::Send(char letter, const std::string& desc, const std::string& msg) { - std::string log = desc; - log.append(": ").append(msg); - ServerInstance->Logs->Log("snomask", LOG_DEFAULT, log); + ServerInstance->Logs->Log(desc, LOG_DEFAULT, msg); + const std::string finalmsg = InspIRCd::Format("*** %s: %s", desc.c_str(), msg.c_str()); - std::string finalmsg = "*** "; - finalmsg.append(log); /* Only opers can receive snotices, so we iterate the oper list */ const UserManager::OperList& opers = ServerInstance->Users->all_opers; for (UserManager::OperList::const_iterator i = opers.begin(); i != opers.end(); ++i) |