Skip to content

Commit

Permalink
Remove errorstream logging on password change
Browse files Browse the repository at this point in the history
This seems to be a debug message which has been forgotten to be removed.
  • Loading branch information
est31 committed Apr 3, 2015
1 parent 470de10 commit 1cb4045
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/network/serverpackethandler.cpp
Expand Up @@ -1223,7 +1223,6 @@ void Server::handleCommand_Breath(NetworkPacket* pkt)

void Server::handleCommand_Password(NetworkPacket* pkt)
{
errorstream << "PAssword packet size: " << pkt->getSize() << " size required: " << PASSWORD_SIZE * 2 << std::endl;
if ((pkt->getCommand() == TOSERVER_PASSWORD && pkt->getSize() < 4) ||
pkt->getSize() != PASSWORD_SIZE * 2)
return;
Expand Down

0 comments on commit 1cb4045

Please sign in to comment.