diff options
| author | 2025-03-22 10:21:40 +0000 | |
|---|---|---|
| committer | 2025-03-28 10:23:22 +0000 | |
| commit | fedbbbf4abc300da02c599981b4b75aa307df9e1 (patch) | |
| tree | c5b676fce0d7334fc42c54233ad524025b0fea49 | |
| parent | Handle errors from {fmt} in Log::Manager::Write. (diff) | |
Fix a malformed log message in core_oper.
| -rw-r--r-- | src/coremods/core_oper/core_oper.cpp | 5 |
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); } } |
