Quantcast
Channel: Answers for "Debug.Print not working"
Browsing all 7 articles
Browse latest View live

Answer by Crystalline

As far as I know on Android you cannot view debug logs. You can always create one manually. var debuglog : GUIText; function OnGUI () { if (GUI.Button(Rect(0,0,128,128),'button')) { debuglog.text =...

View Article



Answer by meat5000

**You can view Debug logs in Android through Eclipse using LogCat**

View Article

Answer by Hellium

When you deploy your game (exe, Android App, ...), only Debug.LogError are printed on the console (don't forget to check the "Development build" when building your game).

View Article

Answer by lakeman

I recommend you use plugin **[Device Console][1]**. It gives us a debug console on devices. Very easy to see logs. Details: https://www.assetstore.unity3d.com/en/#!/content/44935 Screenshot: ![alt...

View Article

Answer by Crystalline

As far as I know on Android you cannot view debug logs. You can always create one manually. var debuglog : GUIText; function OnGUI () { if (GUI.Button(Rect(0,0,128,128),'button')) { debuglog.text =...

View Article


Answer by meat5000

**You can view Debug logs in Android through Eclipse using LogCat**

View Article

Answer by lakeman

You can use adb logcat to view logs on android devices. But the most convenient way is this: https://www.assetstore.unity3d.com/#!/content/44935

View Article
Browsing all 7 articles
Browse latest View live


Latest Images