diff options
Diffstat (limited to 'src/users.cpp')
| -rw-r--r-- | src/users.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/users.cpp b/src/users.cpp index d50b679ac..220060275 100644 --- a/src/users.cpp +++ b/src/users.cpp @@ -336,7 +336,11 @@ void UserIOHandler::OnError(BufferedSocketError sockerr) Cullable::Result User::Cull() { if (!quitting) + { + ServerInstance->Logs.Debug("CULLLIST", "BUG: User {} (@{}) was culled without being quit first!", + uuid, fmt::ptr(this)); ServerInstance->Users.QuitUser(this, "Culled without QuitUser"); + } if (client_sa.family() != AF_UNSPEC) ServerInstance->Users.RemoveCloneCounts(this); |
