menu MaxLock Website
keyboard_arrow_up

Attention!

The content on this website hasn't been updated in a while and is provided as-is, without warranty of any kind. It is mostly kept up for archival purposes.

Getting a Logcat

Table of contents

What is a logcat

In layman’s terms, it is just a log that contains many outputs from the Android system. Logcats are extremely helpful for developers to analyse the problem that appears from their creations.

To retrieve a logcat, there are two methods, one from your device itself and another is through the adb on your computer.

Retrieve logcat from your phone

You can get a logcat from your phone. In this section, we will be demonstrating on how to retrieve a log from the all famous CatLog app. You may use any other log-fetching app of your choice, but, the steps below won’t be compatible with the other apps.

  1. Open CatLog
  2. Grant superuser permission if you haven’t done so.
  3. Tap on the action overflow (or better known as “menu”) icon on the navigation bar. Or if your device has a physical menu button, tap / click it.
  4. Tap on Record
  5. A prompt will appear asking for a file name. The choice is yours. The log type should be left as is (in this case, “verbose”)
  6. Once the record is started, recreate the problem that you have faced.
  7. Once done, slide down your notification drawer and tap on Catlog’s notification item. The recording will stop and the file will be exported.
  8. Locate the exported log inside your internal storage.
  9. Submit the logcat

Retrieve logcat using adb

You can follow the excellent guide from Lineage OS to learn how to take a logcat.

Once you’re done, you can submit the captured logcat.txt to the developer.