[ACCEPTED]-Android: How to obtain data/anr/traces.txt from Samsung Galaxy Tab?-android

Accepted answer
Score: 41

You can fetch the file using the following 2 command:

adb pull /data/anr/traces.txt

Hope 1 this helps, Francisco.

Score: 29

for Android Pie+

adb bugreport ./bugreport.zip

and you will get then in 1 zip file

bugreport/FS/data/anr/*
bugreport/FS/data/tombstones/*
Score: 1

On some devices the traces file is called 2 traces.txt.bugreport for whatever reason. See the other answers 1 for pulling the file to your device.

Score: 0

Try this command. it is hassle free. adb shell "cat /data/anr/traces.txt" | less

0

More Related questions