How do I find which object is associated with this Key in my Warning?

I get this warning occasionally on my clients when my network game first starts up, but don’t know how to lookup with GameObject/Network Object is associated with this key. It would save me a lot of time troubleshooting. Is there a way?

[Netcode] Deferred messages were received for a trigger of type OnSpawn with key 1154, but that trigger was not received within within 1 second(s).

Thanks!

This error needs to be improved. The issue is that your NetworkManager.NetworkConfig.SpawnTimeout is being hit and a message is being dropped. This happens if it takes longer than a second for the client to synchronize (we will be bumping this up to default to 10s in the next update) so any messages sent for yet-to-be-spawnd NetworkObjects are being dropped.

Try increasing your NetworkManager.NetworkConfig.SpawnTimeout to something like 10 (seconds) and then see if you no longer get those messages? You should set this on the client side prior to invoking StartClient or when NetworkManager.OnClientStarted is invoked (if you are subscribing to that).