mirror of
https://github.com/MirrorNetworking/Mirror.git
synced 2024-11-18 19:10:32 +00:00
SWT Logging added
This commit is contained in:
parent
6030838d76
commit
31fd837058
@ -90,6 +90,8 @@ public void ProcessMessageQueue(MonoBehaviour behaviour)
|
|||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
if (receiveQueue.Count > 0)
|
||||||
|
Debug.LogWarning($"SimpleWebClient ProcessMessageQueue has {receiveQueue.Count} remaining.");
|
||||||
}
|
}
|
||||||
|
|
||||||
public abstract void Connect(Uri serverAddress);
|
public abstract void Connect(Uri serverAddress);
|
||||||
|
@ -114,6 +114,13 @@ public void ProcessMessageQueue(MonoBehaviour behaviour)
|
|||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (server.receiveQueue.Count > 0)
|
||||||
|
{
|
||||||
|
Console.ForegroundColor = ConsoleColor.Yellow;
|
||||||
|
Console.WriteLine($"SimpleWebServer ProcessMessageQueue has {server.receiveQueue.Count} remaining.");
|
||||||
|
Console.ResetColor();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user