Capture logs - ExtremeXT/ExtremeROM GitHub Wiki

How to Get Logs for issues with the ROM.

This guide is for people who have issues with their ROM and want to properly report them.

Install Platform Tools on Your PC

[Windows]

Download the latest platform-tools directly from Google.

Unzip the file and open the newly created folder. You should now see a folder that looks similar to this:

Open Command Prompt (Terminal) in that folder. To do this, right-click inside the folder and select "Open in Terminal".

You should now see a command-line interface similar to this:

[Linux]

Install platform tools via your package manager, here are some examples:

Debian based distros (Ubuntu) sudo apt install adb

RHEL based distros (dnf) sudo dnf install android-tools

Arch based distros: sudo pacman -S android-tools

[MacOS]

[soon]

Get the logs

Enable USB Debugging Go to Settings > Developer options > USB debugging and turn it on.

If you don't see "Developer options," go to "About phone" and tap on "Build number" seven times until it appears. Now, connect your device to your PC.

In your Command Prompt/Terminal, type adb devices.

You should see a prompt on your phone asking to "Allow USB debugging." Tap Allow or OK.

After allowing, your terminal should show a similar output:

Now, type adb logcat > bug.log.

Recreate your issue on your device.

Once you've reproduced the problem, hit Ctrl+C on your keyboard to stop logging.

Send us (either over Github or Telegram) the new bug.log file located in either your platform-tools folder, or the folder in wich you executed the command.