Tag: logcat

  • Copy Android LogCat / Log Contents From a Device With adb

    It’s a bummer when your Android application crashes while you’re away from a computer. Luckily, there’s a simple adb command that will dump the contents of logcat’s ring buffer to your local disk, so you can examine the cause of the crash: [code] adb logcat -d -v time > logcat.txt [/code] This will copy the…