Performance reporting and high volumes of exceptions

Hi guys,

We’ve enabled performance reporting in our app, and in some cases there’s an exception on one object being thrown every frame. This means we have large numbers for one particular exception coming in. Will this have a severe adverse impact on users’ network traffic or game performance? I’m assuming that a report isn’t sent off over the network for every single frame that the exception is thrown, right?

Thanks!
Michael

Hi,

Assuming that it’s the exact same exception message and stack trace, it will be grouped into a two network calls: One for the very first report, and a second sent later with a count of how many additional times that exception happened. If the message or stack trace is different (for example, a timestamp in the exception message), it would result in separate network calls.

Wonderful, thanks!