Are you using the Eclipse Android plugin? If yes, then switch to the Debug perspective and look at the LogCat view. This shows all the messages which run inside the Dalvik JVM as your code executes. You will see your system out printlns too. A better way is to use the Log.d method to output your debug messages. You can filter on them in the LogCat view and just observe those.
On Tue, Nov 18, 2008 at 8:45 AM, [EMAIL PROTECTED] < [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. > > Thank you. > > > > -- - Sunit Katkar http://sunitkatkar.blogspot.com/ - Android OS Tutorials --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---

