Hello everyone!
Following situation: Recently we released a game to a couple thousand people and we’re collecting exceptions in our internal error reporting system. This is simply done by calling
void Start() {
Applicaiton.logMessageReceived += LogCallback;
}
private void LogCallback(string condition, string stackTrace, LogType type) {
// upload condition and stackTrace to our server
// ...
}
Now, we’re getting a lot of error reports where the condition is
Error: Cannot create FMOD::Sound instance for resource resources.resource, (File not found. )
The stackTrace is empty.
I’m wondering how to start investigating this issue… I have not seen this error on my machine, but it happens for our players. If I had a stack trace I could start narrowing things down, but that’s missing for some reason.
If anyone could provide any more insight into the error message, why it could be happening or how to find out what could be causing it, I’d appreciate it a lot. Thanks!