Created
December 5, 2017 15:21
-
-
Save GregLukosek/d5a9b5e73d21d8562144af7b716c9cfa to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ 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