Is it mandatory to have a try/catch on asset loader success callback? Or is there a way to delete that?
Because when we actually have an error, it makes it very annoying to find the origin of the error as the onError function contains very few information like the error message only. But we don’t have the file and line where the error is.
Thus I am putting console everywhere in the success callback to find out what is really the error. How do you guys deal with that?
Thanks