Logger

interface Logger

An interface representing a logger. Allows logging messages at various severity Levels.

Inheritors

Properties

Link copied to clipboard
abstract val name: String

The name of this logger instance.

Functions

Link copied to clipboard
open fun debug(cause: Throwable? = null, msg: () -> String)

Logs a message at the Level.DEBUG level.

Link copied to clipboard
open fun error(cause: Throwable? = null, msg: () -> String)

Logs a message at the Level.ERROR level.

Link copied to clipboard
open fun info(cause: Throwable? = null, msg: () -> String)

Logs a message at the Level.INFO level.

Link copied to clipboard
abstract fun log(level: Level, cause: Throwable? = null, msg: () -> String)

Logs a message at the specified level.

Link copied to clipboard
open fun trace(cause: Throwable? = null, msg: () -> String)

Logs a message at the Level.TRACE level.

Link copied to clipboard
open fun warn(cause: Throwable? = null, msg: () -> String)

Logs a message at the Level.WARN level.