About This Project
The power of android logcat, now developer can jump right to the log printed from.
Catdea Plugin intended to match Android Logcat log entries with the source code that emit them, thereby providing navigation and interactivity, in order to simplify debugging or reverse engineering.
Plugin uses pre-compile-time calculations to identify log emitters in the source code, thus, no RegExp patterns required.
A brand-new library for android about logging and loggers. Briefly, It's used to transform something like this
Log.e("MyTag1", String.valueOf(X)); Log.e("MyTag2", "Message", thr);
in something like this
loge(X, thr)
Logger is simple library, which will help you to find your logs easily, just clicking on log.
A simple log helper which helps you to log in a whole different level.
Historian is a custom implementation of Timber.Tree, which is popular logging library.
Historian can save device's logs into dedicated SQLite database, so that your users can send the file to a bug report mail to you.
LogcatViewer is utility library which will allow user to view the logcat logs of the application on phone itself. It will be useful for tester to provide logs along with defects and also to developer to do initial analysis of defects. Moreover, if correct tags are used, it can also be useful for performance measurement, for monitoring network requests etc. etc.
A logcat alike overlay to display log messages in your app as independent overlay.
Lynx is an Android library created to show a custom view with all the information logcat is printing, different traces of different levels will be rendered to show from log messages to your application exceptions. You can filter this traces, share your logcat to other apps, configure the max number of traces to show or the sampling rate used by the library. The min Api Level supported is 8.
Python script to highlight adb logcat output in console.
Colored logcat script which only shows log entries for a specific application package.
An update to Jeff Sharkey's excellent logcat color script which only shows log entries for processes from a specific application package.