By android:debuggable="true" in your manifest file, the application will go into debug mode, which means that android will manage the entire log file related to your application. But be sure to return it false (or remove this tag) if the application will work or in release mode.
<manifest xmlns:android="http://schemas.android.com/apk/res/android" ... <application android:icon="@drawable/icon" android:debuggable="true"
drawnonward Jun 01 '10 at 19:00 2010-06-01 19:00
source share