Example usage for android.util EventLog writeEvent

List of usage examples for android.util EventLog writeEvent

Introduction

In this page you can find the example usage for android.util EventLog writeEvent.

Prototype

public static native int writeEvent(int tag, Object... list);

Source Link

Document

Record an event log message.

Usage

From source file:io.requery.android.database.sqlite.SQLiteDatabase.java

/**
 * Sends a corruption message to the database error handler.
 */
void onCorruption() {
    EventLog.writeEvent(EVENT_DB_CORRUPT, getLabel());
    mErrorHandler.onCorruption(this);
}