aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGravatar Sadie Powell2025-03-22 10:21:40 +0000
committerGravatar Sadie Powell2025-03-28 10:23:22 +0000
commitfedbbbf4abc300da02c599981b4b75aa307df9e1 (patch)
treec5b676fce0d7334fc42c54233ad524025b0fea49 /src
parentHandle errors from {fmt} in Log::Manager::Write. (diff)
Fix a malformed log message in core_oper.
Diffstat (limited to 'src')
-rw-r--r--src/coremods/core_oper/core_oper.cpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/coremods/core_oper/core_oper.cpp b/src/coremods/core_oper/core_oper.cpp
index e524a2010..bfd5b3c03 100644
--- a/src/coremods/core_oper/core_oper.cpp
+++ b/src/coremods/core_oper/core_oper.cpp
@@ -139,7 +139,10 @@ public:
if (hasoperclass.Get(luser))
{
if (!luser->FindConnectClass(true))
- ServerInstance->Logs.Normal("CONNECTCLASS", "Unable to find a non-operator connect class for {} ({}); keeping their existing one.");
+ {
+ ServerInstance->Logs.Normal("CONNECTCLASS", "Unable to find a non-operator connect class for {} ({}); keeping their existing one.",
+ user->nick, user->GetRealUserHost());
+ }
hasoperclass.Unset(luser);
}
}