Functions

Link copied to clipboard
abstract fun log(message: String)

Note that log does not send message right away, message is attached when recordException is called afterwards

Link copied to clipboard
abstract fun logException(exceptionTitle: String, message: String)

Shorthand for log(message) + recordException(IllegalStateException(title))

Link copied to clipboard
abstract fun recordException(throwable: Throwable)
Link copied to clipboard
abstract fun setCustomKey(key: String, value: String)