Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to see NSLog output with Apportable?

Tags:

apportable

How to see NSLog or any plain printf output with Apportable? I run my program with apportable debug and run the gdb, but there's no output.

like image 605
eonil Avatar asked Mar 23 '23 23:03

eonil


1 Answers

NSLog and printf are piped to the android logging system. So in order to see your messages; invoke adb logcat. That will allow you to see logging.

like image 93
Philippe Hausler Avatar answered Mar 26 '23 15:03

Philippe Hausler