On Android I am using the android.util.Log
to log within my application and during development I am using the adb logcat
or Eclipse to see the logs - I use it even more then debugging...
On device I can save the logfile from my code or use some application form Android Market to save the logs - e.g. aLogCat.
Now can I do the same on the iPhone? I can use the NSLog(@"message");
, but can I easily save the log file from my application and access it? Are there any ways for that?
Regards, STeN