ACRALog

interface ACRALog

Responsible for providing ACRA classes with a platform neutral way of logging.

One reason for using this mechanism is to allow ACRA classes to use a logging system, but be able to execute in a test environment outside of an Android JVM.

Author

William Ferguson

Since

4.3.0

Functions

d
Link copied to clipboard
abstract fun d(tag: String, msg: String): Int
abstract fun d(tag: String, msg: String, tr: Throwable): Int
e
Link copied to clipboard
abstract fun e(tag: String, msg: String): Int
abstract fun e(tag: String, msg: String, tr: Throwable): Int
getStackTraceString
Link copied to clipboard
abstract fun getStackTraceString(tr: Throwable): String?
i
Link copied to clipboard
abstract fun i(tag: String, msg: String): Int
abstract fun i(tag: String, msg: String, tr: Throwable): Int
v
Link copied to clipboard
abstract fun v(tag: String, msg: String): Int
abstract fun v(tag: String, msg: String, tr: Throwable): Int
w
Link copied to clipboard
abstract fun w(tag: String, msg: String): Int
abstract fun w(tag: String, tr: Throwable): Int
abstract fun w(tag: String, msg: String, tr: Throwable): Int

Inheritors

AndroidLogDelegate
Link copied to clipboard
HollowLog
Link copied to clipboard