From 6929cd6c4c468501949e7d8359ccd5dbfd5e815c Mon Sep 17 00:00:00 2001 From: David Cernat Date: Sun, 30 Oct 2016 02:30:17 +0300 Subject: [PATCH] Delete debug about player map that is no longer needed --- apps/openmw-mp/Player.cpp | 6 ------ 1 file changed, 6 deletions(-) diff --git a/apps/openmw-mp/Player.cpp b/apps/openmw-mp/Player.cpp index 0a9e11bd1..b594ba84e 100644 --- a/apps/openmw-mp/Player.cpp +++ b/apps/openmw-mp/Player.cpp @@ -12,9 +12,6 @@ void Players::DeletePlayer(RakNet::RakNetGUID guid) { LOG_MESSAGE_SIMPLE(Log::LOG_INFO, "Deleting player with guid %lu", guid.g); - - LOG_APPEND(Log::LOG_INFO, "- %i players remaining before", - players.size()); if (players[guid.g] != 0) { @@ -25,9 +22,6 @@ void Players::DeletePlayer(RakNet::RakNetGUID guid) delete players[guid.g]; players.erase(guid.g); } - - LOG_APPEND(Log::LOG_INFO, "- %i players remaining after", - players.size()); } void Players::NewPlayer(RakNet::RakNetGUID guid)