Forgot to comment out a debug log

This commit is contained in:
vis2k 2020-09-28 10:38:16 +02:00
parent 1d5e4f317c
commit 717ad1e39f

View File

@ -21,7 +21,7 @@ public NetworkConnectionToClient(int networkConnectionId) : base(networkConnecti
internal override bool Send(ArraySegment<byte> segment, int channelId = Channels.DefaultReliable) internal override bool Send(ArraySegment<byte> segment, int channelId = Channels.DefaultReliable)
{ {
Debug.Log("ConnectionSend " + this + " bytes:" + BitConverter.ToString(segment.Array, segment.Offset, segment.Count)); //Debug.Log("ConnectionSend " + this + " bytes:" + BitConverter.ToString(segment.Array, segment.Offset, segment.Count));
// validate packet size first. // validate packet size first.
if (ValidatePacketSize(segment, channelId)) if (ValidatePacketSize(segment, channelId))