About
Logs in Android
Management
Reading and Writing Logs
public static final String LOG_TAG = ClassName.class.getSimpleName();
// Verbose
Log.v(LOG_TAG,"String");
View
You can use:
- Monitor or
- the command line tool adb_logcat
to view logs.
Monitor
ADB Logcat
adb logcat
If you're overwhelmed by logs, you can stop ADB logcat while it's running by hitting CTRL+Z.
Doc: ADB logcat
Documentation / Reference
Library
- Pidcat. An update to Jeff Sharkey's excellent logcat color script which only shows log entries for processes from a specific application package.