Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/flimberger/alogview
A coloured log viewer written in Go
https://github.com/flimberger/alogview
android logging tool
Last synced: 11 days ago
JSON representation
A coloured log viewer written in Go
- Host: GitHub
- URL: https://github.com/flimberger/alogview
- Owner: flimberger
- License: bsd-2-clause
- Created: 2018-07-10T18:47:05.000Z (over 6 years ago)
- Default Branch: main
- Last Pushed: 2023-03-12T10:50:12.000Z (almost 2 years ago)
- Last Synced: 2024-12-11T18:14:16.786Z (11 days ago)
- Topics: android, logging, tool
- Language: Go
- Size: 33.2 KB
- Stars: 9
- Watchers: 4
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Alogview - a coloured log viewer for ADB logcat
`Alogview` is a simple wrapper for `adb logcat`,
which shows all log messages originating from specific application packages.
It also colours them according to their severity level.It is inspired by Jake Whartons excellent [`pidcat`](https://github.com/JakeWharton/pidcat) script,
which uses its own output format,
which I find inconvenient.## Usage
`alogview [PACKAGES]`
Invoking `alogview` without any argument prints all received log messages to stdout.
If one or more `package` is supplied,
only log messages emitted by processes belonging to those packages are printed.## Installation
`Adb` from the Android SDK is expected to be on the `PATH`.
A simple `go get github.com/flimberger/alogview` is sufficient.