Logger

abstract class Logger(var level: Level = Level.INFO)

Abstract Koin Logger

Author

Arnaud Giuliani

Inheritors

PrintLogger

Constructors

Link copied to clipboard
constructor(level: Level = Level.INFO)

Properties

Link copied to clipboard

Functions

Link copied to clipboard
fun debug(msg: MESSAGE)
Link copied to clipboard
abstract fun display(level: Level, msg: MESSAGE)
Link copied to clipboard
fun error(msg: MESSAGE)
Link copied to clipboard
fun info(msg: MESSAGE)
Link copied to clipboard
inline fun isAt(lvl: Level): Boolean
Link copied to clipboard
inline fun log(lvl: Level, msg: () -> String)
fun log(lvl: Level, msg: String)
Link copied to clipboard
fun warn(msg: MESSAGE)