Skip to content

Commit 1cb4045

Browse files
committedApr 3, 2015
Remove errorstream logging on password change
This seems to be a debug message which has been forgotten to be removed.
1 parent 470de10 commit 1cb4045

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed
 

Diff for: ‎src/network/serverpackethandler.cpp

-1
Original file line numberDiff line numberDiff line change
@@ -1223,7 +1223,6 @@ void Server::handleCommand_Breath(NetworkPacket* pkt)
12231223

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

0 commit comments

Comments
 (0)
Please sign in to comment.