I just started using android’s LogCat for debugging my Unity app for android. As far as i’ve understood, all Unity-related messages in LogCat can be sorted out by adding a filter with [Log Tag = “Unity”]. My only issue is that i am not sure how to distinguish Error messages from normal print statements in unity, since the LogCat does not make this difference clear.
All error messages i’ve seen so far have included the term “Exception”, for example “UnassignedReferenceException”. **It is true that ALL error messages includes this?** If not, is there another simple way to find the error messages in Android’s LogCat?
↧