When I try to debug my app with logcats in android studio, a bunch of unwanted logs(related to android OS or whatever) are showing which makes my logs hard to be found.
I know that I can filter logs by using certain TAGS but I was wondering if there is any better way of seeing ONLY the logcats you have explicitly written in your own code without writing a regexp which includes all your TAGS.
For example I can use this regexp for 3 tags:
MainTagName|SomeTagName|SomeOtherTagName
but I have to update it everyTime.