KLog

interface KLog

Functions

Link copied to clipboard
abstract fun copy(    name: String = this.name,     level: Level = this.level,     writer: KLogWriter = this.writer,     messageFormatter: KMessageFormatter = this.messageFormatter,     nameFormatter: KNameFormatter? = this.nameFormatter): KLog
Link copied to clipboard
open fun debug(msg: String? = null, err: Throwable? = null)
abstract fun debug(    msg: String? = null,     err: Throwable? = null,     msgProvider: LogMessageFunction? = null)
Link copied to clipboard
open fun error(msg: String? = null, err: Throwable? = null)
abstract fun error(    msg: String? = null,     err: Throwable? = null,     msgProvider: LogMessageFunction? = null)
Link copied to clipboard
open fun info(msg: String? = null, err: Throwable? = null)
abstract fun info(    msg: String? = null,     err: Throwable? = null,     msgProvider: LogMessageFunction? = null)
Link copied to clipboard
open fun trace(msg: String? = null, err: Throwable? = null)
abstract fun trace(    msg: String? = null,     err: Throwable? = null,     msgProvider: LogMessageFunction? = null)
Link copied to clipboard
open fun warn(msg: String? = null, err: Throwable? = null)
abstract fun warn(    msg: String? = null,     err: Throwable? = null,     msgProvider: LogMessageFunction? = null)

Properties

Link copied to clipboard
open val displayName: String
Link copied to clipboard
open val isDebugEnabled: Boolean
Link copied to clipboard
open val isEnabled: Boolean
Link copied to clipboard
open val isErrorEnabled: Boolean
Link copied to clipboard
open val isInfoEnabled: Boolean
Link copied to clipboard
open val isTraceEnabled: Boolean
Link copied to clipboard
open val isWarnEnabled: Boolean
Link copied to clipboard
abstract var level: Level
Link copied to clipboard
abstract var messageFormatter: KMessageFormatter
Link copied to clipboard
abstract val name: String
Link copied to clipboard
abstract var nameFormatter: KNameFormatter?
Link copied to clipboard
abstract var writer: KLogWriter

Inheritors

Link copied to clipboard