Logger

interface Logger

Logger interface that provides methods for logging different levels of information.

Inheritors

Types

Link copied to clipboard
object Companion

Functions

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

Logs a debug message.

Link copied to clipboard
abstract fun e(message: String, throwable: Throwable? = null)

Logs an error message.

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

Logs an informational message.

Link copied to clipboard
abstract fun w(message: String, throwable: Throwable? = null)

Logs a warning message.