[android-developers] Re: System.out.println(...) statements within the onCreate

2010-02-10 Thread intbt
You can use System.out - The output also appears on Logcat (not console) with a system.out tag. On Feb 9, 9:56 pm, Sandeep Phansekar sandeep.phanse...@gmail.com wrote: Instant of  System.out.println(...)  use Log.e( class/method name ,Error message); And view the output in Logcat in Eclipse

[android-developers] Re: System.out.println(...) statements within the onCreate

2010-02-10 Thread Bob Kerns
Yes, but it's much less useful, because it always gets tagged with system.out. It really should be discouraged, especially in production code. Imagine if you've got a dozen things running (I've got more), and they all used System.out instead of Log? On Feb 10, 7:39 am, intbt in...@tacberry.com

[android-developers] Re: System.out.println(...) statements within the onCreate

2010-02-09 Thread Lance Nanek
Use the Log class instead: http://developer.android.com/intl/zh-CN/reference/android/util/Log.html And view the output in Logcat in Eclipse by the menus: Window - Show View - Other - Android - Logcat On Feb 8, 10:37 pm, eehksar eehk...@gmail.com wrote: Hi All, Am a newbie... could anyone