diff options
| author | 2023-07-05 15:04:19 +0100 | |
|---|---|---|
| committer | 2023-07-05 15:06:15 +0100 | |
| commit | a3269e37bdafb9e4bbdd3014dc2c2cc27635e51c (patch) | |
| tree | 0d87578aced05a4b3d5d69a22cc2f7858aed022c /src/base.cpp | |
| parent | Restore the double container logic in CullList::Apply. (diff) | |
| download | inspircd++-a3269e37bdafb9e4bbdd3014dc2c2cc27635e51c.tar.gz inspircd++-a3269e37bdafb9e4bbdd3014dc2c2cc27635e51c.tar.bz2 inspircd++-a3269e37bdafb9e4bbdd3014dc2c2cc27635e51c.zip | |
Minor improvements to cull logging.
- CULLLIST has been renamed to CULL which is easier to spell.
- Some log messages have been improved slightly.
Diffstat (limited to 'src/base.cpp')
| -rw-r--r-- | src/base.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/base.cpp b/src/base.cpp index a77dec862..1653b7d9b 100644 --- a/src/base.cpp +++ b/src/base.cpp @@ -51,7 +51,7 @@ refcountbase::~refcountbase() { if (refcount && ServerInstance) { - ServerInstance->Logs.Debug("CULLLIST", "refcountbase::~ @{} with refcount {}", + ServerInstance->Logs.Debug("CULL", "refcountbase::~ @{} with refcount {}", fmt::ptr(this), refcount); } } @@ -60,7 +60,7 @@ usecountbase::~usecountbase() { if (usecount && ServerInstance) { - ServerInstance->Logs.Debug("CULLLIST", "usecountbase::~ @{} with refcount {}", + ServerInstance->Logs.Debug("CULL", "usecountbase::~ @{} with refcount {}", fmt::ptr(this), usecount); } } |
