Issue
With the new Logcat for AS Dolphin, I’m using the filter:
level:error
and it shows me the errors in the logcat, however, it shows all errors that are happing in the phone,but I just want the errors for my app, I have tried also this:
package:mine || level:error
But it doesn’t work at all. Have you found a way to do this? Thank you for your help!
Solution
Use space instead of || operator.
I tried it on my project, it shows only error log correctly.
package:mine level:error
Answered By – yingru shih
This Answer collected from stackoverflow, is licensed under cc by-sa 2.5 , cc by-sa 3.0 and cc by-sa 4.0