Is there a lightweight software that can get LogCat logs from my android device and print them on a console-like screen?
By lightweight, I mean a few megabytes.
CodePudding user response:
You can view logs with
adb shell logcat
https://developer.android.com/studio/command-line/logcat
You can also view logs on your computer:
To view log output using adb, navigate to your SDK platform-tools/ directory and execute:
adb logcat
That's about as lightweight as it can get :-)
CodePudding user response:
Recommended: Punt - cli tool that makes adb logcat better
Others:
- logger - Simple, pretty and powerful logger for android.
- timber - A logger with a small, extensible API which provides utility on top of Android's normal Log class.
- LoggingInterceptor - An OkHttp interceptor which pretty logs request and response data.
- Bugfender - Upload your logs and check them online, specially made for mobile
- EzyLogger - Simple Lightweight logger
- Logback Android - Logback port to Android which provides a highly configurable logging framework for Android apps.