logkitty
Display pretty Android and iOS logs without Android Studio or Console.app, with intuitive Command Line Interface.
Installation
yarn global add logkittyOr if you prefer having it locally:
yarn add -D logkitty
yarn logkitty --helpUsage
logkitty <platform> <command> [options]Command line help
You can inspect available platforms, command and options for a given platform by adding -h at the end, for example:
logkitty -h # prints available platforms and global options
logkitty android -h # prints commands and options for android
logkitty android tag -h # prints tag command syntax and options for androidCommands
- platform: android:
- tag <tags... - Show logs with matching tags.
- app <appId - Show logs from application with given identifier.
- match <regexes... - Show logs matching given patterns (all regexes have flags g and m).
- custom <patterns... - Use custom patters supported by Logcat.
- all - Show all logs.
- platform: ios:
- tag <tags... - Show logs with matching tags (where tag is usually a name of the app).
- match <regexes... - Show logs matching given patterns (all regexes have flags g and m).
- all - Show all logs.
Options
- common:
- -h, --help - Display help
- -v, --version - Display version
- platform android:
tag, app, match and all commands support additional priority filtering options (sorted by priority):
- -U, -u - Unknown priority (lowest)
- -v, -v - Verbose priority
- -D, -d - Debug priority (default)
- -I, -i - Info priority
- -W, -w - Warn priority
- -E, -e - Error priority