koin-core / org.koin.core.logger / Logger

Logger

abstract class Logger

Abstract Koin Logger

Author
Arnaud Giuliani

Constructors

<init>

Abstract Koin Logger

Logger(level: Level = Level.INFO)

Properties

level

var level: Level

Functions

debug

fun debug(msg: MESSAGE): Unit

error

fun error(msg: MESSAGE): Unit

info

fun info(msg: MESSAGE): Unit

isAt

fun isAt(lvl: Level): Boolean

log

abstract fun log(level: Level, msg: MESSAGE): Unit

Inheritors

EmptyLogger

No loggings Logger

class EmptyLogger : Logger

PrintLogger

Logger that print on system.out

class PrintLogger : Logger