TapikLogger

interface TapikLogger(source)

Logging callbacks used by the shared Tapik code-generation engine.

Inheritors

Types

Link copied to clipboard

Logger implementation that prints messages to the standard output stream.

Link copied to clipboard
object NoOp : TapikLogger

Logger implementation that discards every message.

Functions

Link copied to clipboard
abstract fun debug(message: String, error: Throwable? = null)

Logs a debug message.

Link copied to clipboard
abstract fun info(message: String, error: Throwable? = null)

Logs an informational message.

Link copied to clipboard
abstract fun warn(message: String, error: Throwable? = null)

Logs a warning message.