Logger

interface Logger(source)

Describes a logger used by ConfigCatClient.

Functions

Link copied to clipboard
abstract fun debug(message: String)

Log a message at level LogLevel.DEBUG.

Link copied to clipboard
abstract fun error(message: String)

Log a message at level LogLevel.ERROR.

abstract fun error(message: String, throwable: Throwable)

Log a message with throwable at level LogLevel.ERROR.

Link copied to clipboard
abstract fun info(message: String)

Log a message at level LogLevel.INFO.

Link copied to clipboard
abstract fun warning(message: String)

Log a message at level LogLevel.WARNING.