aboutsummaryrefslogtreecommitdiff
path: root/src/cull.cpp
diff options
context:
space:
mode:
authorGravatar Sadie Powell2023-06-08 17:39:10 +0100
committerGravatar Sadie Powell2023-06-08 17:39:10 +0100
commit36937eab9edec0ff81c7b852cbb22270f8e6f71e (patch)
treef7cc3a75319508d3f99bb4b7858cc866b6361c2b /src/cull.cpp
parentFix "auto" not being a valid options for <options:defaultbind>. (diff)
Log the number of object added to the cull list from a destructor.
Diffstat (limited to 'src/cull.cpp')
-rw-r--r--src/cull.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cull.cpp b/src/cull.cpp
index d5eff6db3..beae5494b 100644
--- a/src/cull.cpp
+++ b/src/cull.cpp
@@ -109,7 +109,7 @@ void CullList::Apply()
if (!list.empty())
{
- ServerInstance->Logs.Debug("CULLLIST", "WARNING: Objects added to cull list in a destructor");
+ ServerInstance->Logs.Debug("CULLLIST", "WARNING: %zu objects added to the cull list from a destructor", list.size());
Apply();
}
}