aboutsummaryrefslogtreecommitdiffstats
path: root/src/cull_list.cpp
diff options
context:
space:
mode:
authorGravatar Attila Molnar2013-05-21 17:11:46 -0700
committerGravatar Attila Molnar2013-05-21 17:11:46 -0700
commitb36ce84c7da93f680fc397bcb4c877abe063eaaa (patch)
tree4e5a593816383612d0e49bf6e4affa4f3d354dc8 /src/cull_list.cpp
parentMerge pull request #522 from SaberUK/master+xline-displayable (diff)
parentFix spacing in calls to LogManager::Log. (diff)
downloadinspircd++-b36ce84c7da93f680fc397bcb4c877abe063eaaa.tar.gz
inspircd++-b36ce84c7da93f680fc397bcb4c877abe063eaaa.tar.bz2
inspircd++-b36ce84c7da93f680fc397bcb4c877abe063eaaa.zip
Merge pull request #545 from SaberUK/master+logging-cleanup
Clean up the logging system (part 1 of 2).
Diffstat (limited to 'src/cull_list.cpp')
-rw-r--r--src/cull_list.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cull_list.cpp b/src/cull_list.cpp
index 5bb23b878..5cbe3aef3 100644
--- a/src/cull_list.cpp
+++ b/src/cull_list.cpp
@@ -53,7 +53,7 @@ void CullList::Apply()
}
else
{
- ServerInstance->Logs->Log("CULLLIST",LOG_DEBUG, "WARNING: Object @%p culled twice!",
+ ServerInstance->Logs->Log("CULLLIST", LOG_DEBUG, "WARNING: Object @%p culled twice!",
(void*)c);
}
}
@@ -65,7 +65,7 @@ void CullList::Apply()
}
if (list.size())
{
- ServerInstance->Logs->Log("CULLLIST",LOG_DEBUG, "WARNING: Objects added to cull list in a destructor");
+ ServerInstance->Logs->Log("CULLLIST", LOG_DEBUG, "WARNING: Objects added to cull list in a destructor");
Apply();
}
}