Logger

interface Logger

Minimal logging abstraction used within the FUS client. Log levels are intentionally limited to keep the API portable across platforms.

Functions

Link copied to clipboard
abstract fun debug(message: String)

Logs a debug message. Implementations may drop it in production.

Link copied to clipboard
abstract fun error(message: String)

Logs an error message.

Link copied to clipboard
abstract fun info(message: String)

Logs an informational message.