Logger

abstract class Logger(tag: String)

Inheritors

Constructors

Link copied to clipboard
constructor(tag: String)

Functions

Link copied to clipboard
fun debug(msg: Any)

Logs a debugging message.

Link copied to clipboard
fun error(msg: Any)

Logs an error message.

Link copied to clipboard
fun info(msg: Any)

Logs an info message.

Link copied to clipboard
abstract fun log(level: Level, msg: String)

Logs a message with a specific level.

Link copied to clipboard
fun warn(msg: Any)

Logs a warning message.