None

open class None : Logger

The None class is an implementation of the Logger interface that performs no operations. This can be used as a default or placeholder logger.

Constructors

Link copied to clipboard
constructor()

Functions

Link copied to clipboard
open override fun d(message: String)

Logs a debug message. This implementation does nothing.

Link copied to clipboard
open override fun e(message: String, throwable: Throwable?)

Logs an error message. This implementation does nothing.

Link copied to clipboard
open override fun i(message: String)

Logs an informational message. This implementation does nothing.

Link copied to clipboard
open override fun w(message: String, throwable: Throwable?)

Logs a warning message. This implementation does nothing.