ILogger

fun interface ILogger

A functional interface for logging messages.

This interface allows implementing custom logging logic that can be passed around as lambdas and can be used with various logging frameworks.

Functions

Link copied to clipboard
abstract fun log(level: Level, tag: String, message: String)

Logs a message with the specified level, tag, and message.