logcat-color
logcat-color copied to clipboard
A colorful and highly configurable alternative to the standard "adb logcat" command from the Android SDK
seems to have succumbed to link rot
With this patch, logcat-color can filter logs based on process id. ``` logcat-color --pid=`adb shell pidof "your.app.package.name"` ``` For example ``` logcat-color --pid=`adb shell pidof "com.android.systemui"` ```
Hi, Thanks for this nice tool. Leaving a note here that it doesn't work on python3.5 ```bash deactivate mkvirtualenv -p $(which python3) logcat-color workon logcat-color pip install logcat-color ``` ```...
In logcat, there are `-e` flag to filter lines of which regex pattern matching i want to see. There are none in logcat-color, but mostly what i need is removing...
from the source code of logcat-color: if len(self.args) >= 1: self.profile = Profile.get_profile(self.args[0]) if self.profile: self.args = self.args[1:] and profile.py: class Profile(object): **profiles** = {} ``` @classmethod def get_profile(cls, name):...
For example, The following log is an Info log with the tag DEBUG: ``` 97 DEBUG I 40f83efc 0000100b 20786469 63616669 63612065 ....idx iface ac ``` The DEBUG tag was...
There is no coloring for logcat output at Android 6.0
mac@mac-desktop:~$ sudo git clone git://github.com/marshall/logcat-color.git Cloning into 'logcat-color'... remote: Counting objects: 309, done. remote: Total 309 (delta 0), reused 0 (delta 0), pack-reused 309 Receiving objects: 100% (309/309), 410.58 KiB...
Can you please update the documentation to specify exactly where to put the `Profile` information and how to call it? I created a file in `~/.logcat-color` with the following content:...
When I log something using `new JSONObject(jsonString).toString(2)`, indentation is not shown in logcat-color output.