Android debugging's `adb logcat` in pretty colors
npm install clogcat Not on NPM yet, but you can clone and do npm install -g
Then simple usage is:
$ clogcat
This is tool for debug android applications in color. Like Cyanogenmod (and possibly others)
do by default. It becomes impossible to live without. If possible use the -C flag on the
native adb logcat command (a la cyanogenmod) and not this tool, as it can handle the "raw"
format which this cannot.
> General Logcat Hint: Familiarity with the filterspec use to filter logs will make your life SO MUCH EASIER. Use it!
Forked from original logcat by © Spirin Vladimir and almost completely rewritten.
- removed express dependency (and webserver) - I don't need a http view of this data.
- changed handling of colors to match log levels by logcat's own Priority markers.
- pass commandline args to adb and/or logcat. (also, adb args if you include "logcat" in your own args)
e.g.
$ logcat -s
>>> Running: adb -s
...
$ logcat -v long
>>> Running: adb logcat -v long <<<
...