Table of Contents

Android - (ADB) Logcat

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:

to view logs.

Monitor

Monitor

Android Monitor Logcat

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