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)