Logger

interface Logger

Logging interface for ImageLoaders.

See also

Inheritors

Types

Link copied to clipboard

The priority level for a log message.

Properties

Link copied to clipboard
abstract var minLevel: Logger.Level

The minimum level for this logger to log.

Functions

Link copied to clipboard
abstract fun log(tag: String, level: Logger.Level, message: String?, throwable: Throwable?)

Write message and/or throwable to a logging destination.

Link copied to clipboard
fun Logger.log(tag: String, throwable: Throwable)
inline fun Logger.log(tag: String, level: Logger.Level, message: () -> String)