Console

open class Console : Logger

Console class implementing the Logger interface. This class provides methods to log messages to the console.

Constructors

Link copied to clipboard
constructor()

Functions

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

Logs a debug message to the console.

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

Logs an error message to the console.

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

Logs an info message to the console.

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

Logs a warning message to the console.