[EMAIL PROTECTED] wrote: > Hi, > > I am using Eclipse to develop my android application. > In my application, I have "System.out.println(...)" for debugging > purpose. > > But where can i find the output? > > I look at the 'Console', I don't see anything there. > > I am sure my System.out.prinln() has executed.
Try using android.util.Log instead of System.out.println(), and then use adb logcat or DDMS to view the results of the logs. -- Mark Murphy (a Commons Guy) http://commonsware.com _The Busy Coder's Guide to Android Development_ Version 1.4 Published! --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Android Beginners" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/android-beginners?hl=en -~----------~----~----~----~------~----~------~--~---

