Skip to content

Commit

Permalink
updage help message
Browse files Browse the repository at this point in the history
  • Loading branch information
ujiro99 committed Jan 10, 2016
1 parent 160d796 commit 0a2c4c4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions const.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,15 @@ const (

// Message has message strings.
var Message = map[string]string{
"commandDescription": "A command to format Android Logcat",
"commandDescription": "A command line tool for format Android Logcat",
"helpFormat": `Format of output
- Available keyword:
%t (%time), %a (%tag), %p (%priority)
%i (%pid), %I (%tid), %m (%message)
- Example:
adb logcat -v time | logcatf "%t %4i %m"
adb logcat -v threadtime | logcatf "%t, %a, %m" > logcat.csv
adb logcat -v threadtime | logcatf "%t" -o "Exception" -c "adb shell screencap -p /data/local/tmp/screen.png"
adb logcat -v threadtime | logcatf "%t, %a, %m" --to-csv > logcat.csv
adb logcat -v | logcatf -o "Exception" -c "adb shell screencap -p /data/local/tmp/s.png"
- Default Format:
"%time %tag %priority %message"`,
"helpTrigger": "regex to trigger a COMMAND.",
Expand Down

0 comments on commit 0a2c4c4

Please sign in to comment.