Skip to content

Commit 0b3dec1

Browse files
committed
Removed debug logs
1 parent 916f467 commit 0b3dec1

File tree

2 files changed

+0
-2
lines changed

2 files changed

+0
-2
lines changed

MLAPI/MonoBehaviours/Core/NetworkedBehaviour.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,6 @@ protected void InvokeCommand(string methodName, params object[] methodParams)
194194

195195
protected void InvokeClientRpc(string methodName, params object[] methodParams)
196196
{
197-
Debug.LogError("InvokeRPc");
198197
if (!NetworkingManager.singleton.isServer)
199198
{
200199
Debug.LogWarning("MLAPI: Cannot invoke ClientRpc from client");

MLAPI/NetworkingManagerComponents/Core/InternalMessageHandler.Receive.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -406,7 +406,6 @@ internal static void HandleCommand(uint clientId, byte[] incommingData, int chan
406406

407407
internal static void HandleRpc(uint clientId, byte[] incommingData, int channelId)
408408
{
409-
Debug.LogError("RPC inc");
410409
BitReader reader = new BitReader(incommingData);
411410
uint networkId = reader.ReadUInt();
412411
ushort orderId = reader.ReadUShort();

0 commit comments

Comments
 (0)