From: est31 Date: Tue, 23 Jun 2015 19:14:48 +0000 (+0200) Subject: Small TOCLIENT_HELLO logging fix X-Git-Tag: 0.4.13~177 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=3a89e25fe04ede972b959dc9e64c2c3dde5a230a;p=oweals%2Fminetest.git Small TOCLIENT_HELLO logging fix Fix grammar error and missing number conversion for version. Also add deployed protocol to log line. --- diff --git a/src/network/clientpackethandler.cpp b/src/network/clientpackethandler.cpp index 1f13c62f9..35a9bf07a 100644 --- a/src/network/clientpackethandler.cpp +++ b/src/network/clientpackethandler.cpp @@ -55,9 +55,10 @@ void Client::handleCommand_Hello(NetworkPacket* pkt) // Chose an auth method we support AuthMechanism chosen_auth_mechanism = choseAuthMech(auth_mechs); - infostream << "Client: TOCLIENT_HELLO received with " - << "serialization_ver=" << serialization_ver + infostream << "Client: TOCLIENT_HELLO recieved with " + << "serialization_ver=" << (u32)serialization_ver << ", auth_mechs=" << auth_mechs + << ", proto_ver=" << proto_ver << ", compression_mode=" << compression_mode << ". Doing auth with mech " << chosen_auth_mechanism << std::endl;