[android-beginners] Re: Where can I find output of System.out.println?

2008-11-18 Thread 心蓝
Try using android.util.Log instead of System.out.println(), and then use adb logcat or DDMS to view the results of the logs. That's good! 2008/11/19 Mark Murphy <[EMAIL PROTECTED]> > > [EMAIL PROTECTED] wrote: > > Hi, > > > > I am using Eclipse to develop my android application. > > In my applic

[android-beginners] Re: Where can I find output of System.out.println?

2008-11-18 Thread Mark Murphy
[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.prin

[android-beginners] Re: Where can I find output of System.out.println?

2008-11-18 Thread Sunit Katkar
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 de