HttpLogger

class HttpLogger(val configuration: HttpLogger.Configuration, @WorkerThread val log: (String) -> Unit)

Logger for the network communication between the engine and the remote server

Constructors

Link copied to clipboard
constructor(configuration: HttpLogger.Configuration, @WorkerThread log: (String) -> Unit)

Types

Link copied to clipboard
object Companion
Link copied to clipboard
data class Configuration(val level: HttpLogger.Level, val headersToIgnore: List<String>? = null)
Link copied to clipboard

Different levels to specify the content to be logged.

Properties

Link copied to clipboard
Link copied to clipboard
val log: (String) -> Unit