SystemLogger

class SystemLogger(tag: String = "IVSChat") : ChatLogger

Default ChatLogger implementation for ChatRoom. Logs are piped to Android logcat.

Parameters

tag

Tag passed to Android logcat

Constructors

Link copied to clipboard
fun SystemLogger(tag: String = "IVSChat")

Constructs a SystemLogger instance

Functions

Link copied to clipboard
open override fun debug(message: String)

Logging function triggered at DEBUG log level severity.

Link copied to clipboard
open override fun error(message: String, t: Throwable?)

Logging function triggered at ERROR log level severity.

Link copied to clipboard
open override fun info(message: String)

Logging function triggered at INFO log level severity.