SdkLogger

interface SdkLogger

Interface for custom logging within the Bullitt SDK.

Implement this interface to direct SDK logs to your application's logging system. This allows integrating SDK logs with your existing logging infrastructure.

Functions

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

Logs a debug message.

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

Logs an error message.

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

Logs an informational message.

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

Logs a verbose message.

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

Logs a warning message.

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

Logs a critical error message.