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

Popular posts from this blog

Spring Boot + JPA + Hibernate: Unable to locate persister -

go - Golang: panic: runtime error: invalid memory address or nil pointer dereference using bufio.Scanner -

c - double free or corruption (fasttop) -