Small TOCLIENT_HELLO logging fix
Fix grammar error and missing number conversion for version. Also add deployed protocol to log line.master
parent
2c1fd29884
commit
3a89e25fe0
|
@ -55,9 +55,10 @@ void Client::handleCommand_Hello(NetworkPacket* pkt)
|
||||||
// Chose an auth method we support
|
// Chose an auth method we support
|
||||||
AuthMechanism chosen_auth_mechanism = choseAuthMech(auth_mechs);
|
AuthMechanism chosen_auth_mechanism = choseAuthMech(auth_mechs);
|
||||||
|
|
||||||
infostream << "Client: TOCLIENT_HELLO received with "
|
infostream << "Client: TOCLIENT_HELLO recieved with "
|
||||||
<< "serialization_ver=" << serialization_ver
|
<< "serialization_ver=" << (u32)serialization_ver
|
||||||
<< ", auth_mechs=" << auth_mechs
|
<< ", auth_mechs=" << auth_mechs
|
||||||
|
<< ", proto_ver=" << proto_ver
|
||||||
<< ", compression_mode=" << compression_mode
|
<< ", compression_mode=" << compression_mode
|
||||||
<< ". Doing auth with mech " << chosen_auth_mechanism << std::endl;
|
<< ". Doing auth with mech " << chosen_auth_mechanism << std::endl;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue