Logger

object Logger

Centralized logging utility for the app. Provides consistent logging with standardized tags and can be disabled in production.

Functions

Link copied to clipboard
fun critical(tag: String, message: String, throwable: Throwable? = null)

Logs high-importance errors that should always appear even in production.

Link copied to clipboard
fun d(tag: String, message: String)

Logs a debug-level message.

Link copied to clipboard
fun e(tag: String, message: String, throwable: Throwable? = null)

Logs an error-level message.

Link copied to clipboard
fun i(tag: String, message: String)

Logs an info-level message.

Link copied to clipboard
fun w(tag: String, message: String)

Logs a warning-level message.