Disable log

This commit is contained in:
MrGadget 2024-01-17 04:50:47 -05:00
parent dd4f345cb6
commit c719049888

View File

@ -295,7 +295,7 @@ internal static uint GetNextNetworkId()
if (reuseNetworkIds && netIdQueue.Count > 0 && netIdQueue.Peek().timeAvailable < NetworkTime.time)
{
ReusableNetworkId nextNetId = netIdQueue.Dequeue();
Debug.LogFormat(LogType.Log, LogOption.NoStacktrace, null, $"[GetNextNetworkId] Reusing NetworkId {nextNetId.reusableNetId}.");
//Debug.LogFormat(LogType.Log, LogOption.NoStacktrace, null, $"[GetNextNetworkId] Reusing NetworkId {nextNetId.reusableNetId}.");
return nextNetId.reusableNetId;
}