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.
Asked
Active
Viewed 797 times
4
3 Answers
5
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.

Philippe Hausler
- 371
- 1
- 2
0
Open two terminal windows. Type apportable log | grep AppName on one of them. Then just do apportable debug on the other one.

baris
- 304
- 2
- 14