List of usage examples for android.util EventLog writeEvent
public static native int writeEvent(int tag, Object... list);
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); }