android - How to filter logs only with developer's logs? -
when starting application see lot of different logs. know can use tag in class, don't want filter logs tag 1 class. how can filter logs of application logs developer? mean logs, created developer in classes using log class.
create unique application prefix tags:
public static final string application_tag = "myapplicationtags; ";
and use tags:
public static final string tag = application_tag + "mainactivity";
so can filter logs application prefix.
Comments
Post a Comment