ClerkLog

object ClerkLog

Internal logging utility for the Clerk SDK.

This object provides a centralized logging interface that wraps Android's Log class with consistent formatting and tagging for all Clerk SDK log messages. All log messages are prefixed with "Clerk" to make them easily identifiable in log output.

This is an internal utility and should not be used outside the Clerk SDK.

Functions

Link copied to clipboard
fun d(message: String): Int

Logs a debug message.

Link copied to clipboard
fun e(message: String): Int

Logs an error message.

Link copied to clipboard
fun i(message: String): Int

Logs an informational message.

Link copied to clipboard
fun v(message: String): Int

Logs a verbose message.

Link copied to clipboard
fun w(message: String): Int

Logs a warning message.