Package-level declarations

Types

Link copied to clipboard

Represents a log level

Link copied to clipboard
abstract class SupabaseLogger

An interface for logging in Supabase plugins.

Functions

Link copied to clipboard
inline fun SupabaseLogger.d(throwable: Throwable? = null, message: () -> String)

Log a debug message with an optional throwable

Link copied to clipboard
inline fun SupabaseLogger.e(throwable: Throwable? = null, message: () -> String)

Log an error message with an optional throwable

Link copied to clipboard
inline fun SupabaseLogger.i(throwable: Throwable? = null, message: () -> String)

Log an info message with an optional throwable

Link copied to clipboard
inline fun SupabaseLogger.w(throwable: Throwable? = null, message: () -> String)

Log a warning message with an optional throwable