Logging with Android

What’s the best way to see some the logfile output when I do testing of a project on my Android phone?

If I output some information into the logfile with:
Debug.LogWarning(“information”);

How can I see that output when I test run the app on my phone (not using the Unity player)? Is that even possible or what other options do I have?

Thank you for info :slight_smile:

If you connect to the device using adb, you can use the logcat command: “adb logcat -d > mylogfile.txt”

That will create a text file (mylogfile.txt) which should include any statements you logged (like “information” from Debug.Log).

Thanks a lot! That helps me out a lot!