Filtering Logcat In Acra By Application And Not Using Tag
I am currently using ACRA for capturing errors and improving my application. I would like to filter in Logcat all logs generated due to my application running which includes not on
Solution 1:
Trebia,
The tricky part of your request is "adb logcat" spits out PID. The only way I know of to filter by application name is to write a script to query the OS via "ps" to look up the PID. I am not aware of any way to do that within eclipse with out editing the logcat plugin yourself.
If you are using a Mac and you are willing to do the filter outside of eclipse you should try LogRabbit. It can filter by application name or just about any thing else you would need to filter by. In addition to a rich filter creator your saved filters are just one click away for real-time filtering.
You can find more information here: http://lograbbit.com/
Full disclosure I am the creator of LogRabbit.
Post a Comment for "Filtering Logcat In Acra By Application And Not Using Tag"