ConsoleLogger

actual object ConsoleLogger : ILogger

Implementation of the ILogger interface that logs messages to the Android console using Log.

This logger converts logging levels into Android's log priority constants and outputs messages to the system's log buffer, typically viewable via Logcat.

expect object ConsoleLogger : ILogger

Default platform console logger implementation used when no custom ILogger is supplied.

actual object ConsoleLogger : ILogger

Desktop console logger that writes formatted messages to standard output.

actual object ConsoleLogger

iOS console logger that writes formatted messages to standard output for Xcode console viewing.

actual object ConsoleLogger : ILogger

Web console logger that writes messages to the browser console.

Each level is routed to the matching console method so that browser developer tools apply their own severity styling and level filters to LoKdroid output.

Functions

Link copied to clipboard
actual open override fun log(level: Level, tag: String, message: String)

Logs a message to the console with the specified logging level, tag, and message.

expect open override fun log(level: Level, tag: String, message: String)

Logs a message using the platform-native console mechanism.

actual open override fun log(level: Level, tag: String, message: String)

Writes a desktop log entry using the shared Tag [Level] emoji message format.

actual open override fun log(level: Level, tag: String, message: String)