I.Mac
I.Mac

Reputation: 299

cocos2d, how to see log messages on android studio?

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

Answers (1)

Dinamix
Dinamix

Reputation: 47

Use

log("string")

or

cocos2d::log

(if you haven't set cocos2d namespace as USING_NS_CC;)

Upvotes: 2

Related Questions