McLogger

interface McLogger

Logger interface for wrapping different loggers.

Inheritors

Functions

Link copied to clipboard
abstract fun debug(format: String, vararg arguments: Any?)

Log a message at the DEBUG level.

Link copied to clipboard
abstract fun error(format: String, vararg arguments: Any?)

Log a message at the ERROR level.

Link copied to clipboard
abstract fun getName(): String

Gets the name of the logger.

Link copied to clipboard
abstract fun info(format: String, vararg arguments: Any?)

Log a message at the INFO level.

Link copied to clipboard
abstract fun trace(format: String, vararg arguments: Any?)

Log a message at the TRACE level.

Link copied to clipboard
abstract fun warn(format: String, vararg arguments: Any?)

Log a message at the WARN level.