Home > Software engineering >  Software to show Android LogCat
Software to show Android LogCat

Time:12-12

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:

  1. logger - Simple, pretty and powerful logger for android.
  2. timber - A logger with a small, extensible API which provides utility on top of Android's normal Log class.
  3. LoggingInterceptor - An OkHttp interceptor which pretty logs request and response data.
  4. Bugfender - Upload your logs and check them online, specially made for mobile
  5. EzyLogger - Simple Lightweight logger
  6. Logback Android - Logback port to Android which provides a highly configurable logging framework for Android apps.
  • Related