[android-developers] Re: How to enable debug logging in android source

2009-03-01 Thread Mads Kristiansen
Doing something like Log.d(MyApp, Debug log entry); in your own application will make that entry appear in the log, which can be viewed with adb logcat. There shouldn't be any need to enable logging. / Mads On Sun, Mar 1, 2009 at 4:37 AM, ying lcs ying...@gmail.com wrote: Hi, In android

[android-developers] Re: How to enable debug logging in android source

2009-03-01 Thread ying lcs
Thank you. In the View.java, it has code (see below), when will public void debug() get called? Or how to call that function? /** * Prints information about this view in the log output, with the tag * {...@link #VIEW_LOG_TAG}. * * @hide */ public void debug() {