Skip to content

Commit

Permalink
improve log message for consistency
Browse files Browse the repository at this point in the history
  • Loading branch information
mischa committed Oct 28, 2023
1 parent 9215db3 commit a2e0185
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kcp2k/kcp2k/highlevel/KcpPeer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -753,7 +753,7 @@ public void SendHandshake()
byte[] cookieBytes = BitConverter.GetBytes(cookie);

// GetType() shows Server/ClientConn instead of just Connection.
Log.Info($"{identifier}: sending Handshake to other end with cookie={cookie}!");
Log.Info($"{identifier}: sending handshake to other end with cookie={cookie}");
SendReliable(KcpHeader.Handshake, new ArraySegment<byte>(cookieBytes));
}

Expand Down

0 comments on commit a2e0185

Please sign in to comment.