Reputation: 299
I'am trying to log by "CCLOG" but I don't see the log messages on logcat of android studio.
how can i see log messages on android studio? there is another log function?
Upvotes: 0
Views: 779
Reputation: 47
Use
log("string")
or
cocos2d::log
(if you haven't set cocos2d namespace as USING_NS_CC;)
Upvotes: 2