removed debug message

handTracking
Kyle Johnsen 2022-01-05 17:41:58 -05:00
parent c4663e57c4
commit 18746b43d8
1 changed files with 1 additions and 1 deletions

View File

@ -415,7 +415,7 @@ public class NetworkManager : MonoBehaviour
return; return;
} }
byte[] data = Encoding.UTF8.GetBytes(message); byte[] data = Encoding.UTF8.GetBytes(message);
Debug.Log("Attempting to send: " + message); //Debug.Log("Attempting to send: " + message);
udpSocket.SendTo(data, data.Length, SocketFlags.None, RemoteEndPoint); udpSocket.SendTo(data, data.Length, SocketFlags.None, RemoteEndPoint);
} }