{"id":16244211,"url":"https://github.com/doumanash/plogcat","last_synced_at":"2025-07-22T21:05:00.184Z","repository":{"id":66194977,"uuid":"358497132","full_name":"DoumanAsh/plogcat","owner":"DoumanAsh","description":"Pretty wrapper over logcat","archived":false,"fork":false,"pushed_at":"2025-02-26T06:35:46.000Z","size":41,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-04-08T11:19:11.897Z","etag":null,"topics":["logcat"],"latest_commit_sha":null,"homepage":"","language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/DoumanAsh.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2021-04-16T06:22:22.000Z","updated_at":"2025-02-26T06:35:05.000Z","dependencies_parsed_at":null,"dependency_job_id":"a3f5bfd0-b437-4fa9-aa1e-95b877ece8df","html_url":"https://github.com/DoumanAsh/plogcat","commit_stats":{"total_commits":38,"total_committers":1,"mean_commits":38.0,"dds":0.0,"last_synced_commit":"e957d2cc4d226a1076ae5cd57689177992cbdac3"},"previous_names":[],"tags_count":9,"template":false,"template_full_name":null,"purl":"pkg:github/DoumanAsh/plogcat","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DoumanAsh%2Fplogcat","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DoumanAsh%2Fplogcat/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DoumanAsh%2Fplogcat/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DoumanAsh%2Fplogcat/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/DoumanAsh","download_url":"https://codeload.github.com/DoumanAsh/plogcat/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DoumanAsh%2Fplogcat/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":266572351,"owners_count":23950005,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-07-22T02:00:09.085Z","response_time":66,"last_error":null,"robots_txt_status":null,"robots_txt_updated_at":null,"robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["logcat"],"created_at":"2024-10-10T14:18:11.865Z","updated_at":"2025-07-22T21:05:00.161Z","avatar_url":"https://github.com/DoumanAsh.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"# plogcat (pretty logcat)\n\n[![Rust](https://github.com/DoumanAsh/plogcat/actions/workflows/rust.yml/badge.svg)](https://github.com/DoumanAsh/plogcat/actions/workflows/rust.yml)\n\nSimple wrapper over logcat to provide easy way to interact with `adb logcat`\n\n## Usage\n\n```\nplogcat 2.0.0\nColorful wrapper over adb logcat command\n\nUSAGE: [OPTIONS] \u003ccmd\u003e\n\nOPTIONS:\n    -h,  --help                          Prints this help information\n    -b,  --buffer \u003cbuffer\u003e...            Load alternate log buffer.\n         --current                       Filter output by currently running application, if `app` is not set.\n    -c,  --clear                         Clears logcat content before running.\n         --device                        Specifies to use USB connected device.\n    -d,  --dump                          Dumps current log and exits.\n         --emulator                      Specifies to use TCP/IP connected device.\n         --time                          Whether to include time. Default: false.\n         --tag-width \u003ctag_width\u003e         Specifies tag width. Default: 23.\n    -t,  --tag \u003ctag\u003e...                  List of tags to include into output.\n    -l,  --level \u003clevel\u003e                 Specifies minimum Android log level to include. Default Verbose.\n    -L,  --last                          Dumps logs prior to the last reboot.\n         --machine                       Strips output of color, making it more suitable for parsing.\n    -m,  --max_count \u003cmax_count\u003e         Print only provided number of lines and exits.\n    -s,  --serial \u003cserial\u003e               Specifies device's serial number.\n    -e,  --regex \u003cregex\u003e...              Makes regex against which to match log lines.\n         --time-limit \u003ctime_limit\u003e       Prints within time range from specified time to the current time.\n    -i,  --ignored-tag \u003cignored_tag\u003e...  List of tags to exclude from output.\n\nARGS:\n    \u003ccmd\u003e  Mode to use. Allowed modes: [adb, file]\n```\n\n### adb command\n\n```\nadb: uses adb tool to collect logs from the connected device\n\nUSAGE: [OPTIONS] [app]\n\nOPTIONS:\n    -h,  --help  Prints this help information\n\nARGS:\n    [app]  Package name or pid by which to filter logcat. If multiple apps found with the same name, it will output for every match\n```\n\n### file command\n\nComparing to `adb` command, file extraction only provides limited filtering:\n\n- Level limitation\n- Tag filters\n\n```\nfile: Extracts log lines from dumped files. Only limited filtering is provided\n\nUSAGE: [OPTIONS] [files]...\n\nOPTIONS:\n    -h,  --help  Prints this help information\n\nARGS:\n    \u003cfiles\u003e...  One or more files to go through.\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdoumanash%2Fplogcat","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdoumanash%2Fplogcat","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdoumanash%2Fplogcat/lists"}