Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/doumanash/plogcat
Pretty wrapper over logcat
https://github.com/doumanash/plogcat
logcat
Last synced: 1 day ago
JSON representation
Pretty wrapper over logcat
- Host: GitHub
- URL: https://github.com/doumanash/plogcat
- Owner: DoumanAsh
- Created: 2021-04-16T06:22:22.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2024-10-04T05:00:29.000Z (about 1 month ago)
- Last Synced: 2024-10-11T14:17:54.302Z (26 days ago)
- Topics: logcat
- Language: Rust
- Homepage:
- Size: 29.3 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# plogcat (pretty logcat)
[![Rust](https://github.com/DoumanAsh/plogcat/actions/workflows/rust.yml/badge.svg)](https://github.com/DoumanAsh/plogcat/actions/workflows/rust.yml)
Simple wrapper over logcat to provide easy way to interact with `adb logcat`
## Usage
```
plogcat 1.0.0
Colorful wrapper over adb logcat commandUSAGE: [OPTIONS] [app]
OPTIONS:
-h, --help Prints this help information
-b, --buffer ... Load alternate log buffer.
--current Filter output by currently running application, if `app` is not set.
-c, --clear Clears logcat content before running.
--device Specifies to use USB connected device.
-d, --dump Dumps current log and exits.
--emulator Specifies to use TCP/IP connected device.
--time Whether to include time. Default: false.
--tag-width Specifies tag width. Default: 23.
-t, --tag ... List of tags to include into output.
-l, --level Specifies minimum Android log level to include. Default Verbose.
-L, --last Dumps logs prior to the last reboot.
--machine Strips output of color, making it more suitable for parsing.
-m, --max_count Print only provided number of lines and exits.
-s, --serial Specifies device's serial number.
-e, --regex ... Makes regex against which to match log lines.
--time-limit Prints within time range from specified time to the current time.
-i, --ignored-tag ... List of tags to exclude from output.ARGS:
[app] Package name or pid by which to filter logcat. If multiple apps found with the same name, it will output for every match
```