Skip to content

Instantly share code, notes, and snippets.

@GregLukosek
Created December 5, 2017 15:21
Show Gist options
  • Save GregLukosek/d5a9b5e73d21d8562144af7b716c9cfa to your computer and use it in GitHub Desktop.
Save GregLukosek/d5a9b5e73d21d8562144af7b716c9cfa to your computer and use it in GitHub Desktop.
$ adb logcat
and it will start printing out everything that is going on on the device. To limit it to only show the output from inside Unity, you can try this:
$ adb logcat -s Unity
or, to get a little bit more info about what's going on:
$ adb logcat -s Unity ActivityManager PackageManager dalvikvm DEBUG
If you wish to report a bug or otherwise 'quote' the logcat, you can dump the complete logcat to a file like this:
$ adb logcat -d > logcat.txt
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment