Reading Output Logs & Debugging
Tracing the exact path of a network message
The plugin features a dedicated, highly verbose C++ logging category:
LogMPChat. Open the Unreal Output Log and filter by this category for physical proof of network logic.What to Look For
- 1Initialization & Boot: Verifies
MP_ChatManagersuccessfully bound to the GameMode and loaded SaveGame data. - 2Array State Deltas: Traces the exact millisecond the server drops an old message and pushes the delta update to clients.
- 3Relevancy Denials (Anti-Cheat): Logs blocked join/send requests from unauthorized clients, proving culling logic is active.