How do I view cc.log statements when running a Cocos2d-js application on an Android device? Running adb logcat and launching my app gives me tonnes of information about other processes occurring on my android device, but I cannot see anything about the Cocos2d-js application.
I’m using Windows 10, and I don’t want to install an IDE. My app is currently displaying a black screen on Android (not in a browser) and I’d like to see what’s causing it!
Thank you!! Did the equivalent on windows with the query
>adb logcat | find "cocos"
Feel a bit stupid for not trying to search for “cocos” beforehand. Works great though! I can see all my debug information
I definitely feel like this should be more prominent in the Cocos2d-x documentation as it’s a really simple and effective way of debugging without using an IDE.