diff options
author | danieldg <danieldg@e03df62e-2008-0410-955e-edbf42e46eb7> | 2009-10-19 14:14:00 +0000 |
---|---|---|
committer | danieldg <danieldg@e03df62e-2008-0410-955e-edbf42e46eb7> | 2009-10-19 14:14:00 +0000 |
commit | 64362e2fcd50ea2492d6ceb94bccec9764f3e4ef (patch) | |
tree | 2f91898b9fb8b77ccec85a65f9df92b651c4f443 /src/base.cpp | |
parent | f3e45bfb0e74d431fcb4a2fcd0c024f73f73e7c2 (diff) |
Clean up some log messages
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11917 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/base.cpp')
-rw-r--r-- | src/base.cpp | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/base.cpp b/src/base.cpp index 59196fec1..2a89a4830 100644 --- a/src/base.cpp +++ b/src/base.cpp @@ -20,8 +20,7 @@ classbase::classbase() { if (ServerInstance && ServerInstance->Logs) - ServerInstance->Logs->Log("CULLLIST", DEBUG, "classbase::+%s @%p", - typeid(*this).name(), (void*)this); + ServerInstance->Logs->Log("CULLLIST", DEBUG, "classbase::+ @%p", (void*)this); } CullResult classbase::cull() @@ -35,8 +34,7 @@ CullResult classbase::cull() classbase::~classbase() { if (ServerInstance && ServerInstance->Logs) - ServerInstance->Logs->Log("CULLLIST", DEBUG, "classbase::~%s @%p", - typeid(*this).name(), (void*)this); + ServerInstance->Logs->Log("CULLLIST", DEBUG, "classbase::~ @%p", (void*)this); } CullResult::CullResult() |