From 7035dbd7f1c8c97a63c93643111db3af6d42976f Mon Sep 17 00:00:00 2001 From: Tiger Wang Date: Sat, 10 Aug 2013 16:59:48 +0100 Subject: [PATCH] Deleting cPlayer now does LOGD instead of LOG Hopefully only prints in debug the debug message! --- source/Player.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/source/Player.cpp b/source/Player.cpp index b2643f2c8..4109d1a10 100644 --- a/source/Player.cpp +++ b/source/Player.cpp @@ -1,4 +1,3 @@ - #include "Globals.h" // NOTE: MSVC stupidness requires this to be the same across all modules #include "Player.h" @@ -108,7 +107,7 @@ cPlayer::cPlayer(cClientHandle* a_Client, const AString & a_PlayerName) cPlayer::~cPlayer(void) { - LOG("Deleting cPlayer \"%s\" at %p, ID %d", m_PlayerName.c_str(), this, GetUniqueID()); + LOGD("Deleting cPlayer \"%s\" at %p, ID %d", m_PlayerName.c_str(), this, GetUniqueID()); SaveToDisk();