Logger

open class Logger

SipService library logger. You can provide your own logger delegate implementation, to be able to log in a different way. By default the log level is set to DEBUG when the build type is debug, and OFF in release. The default logger implementation logs in Android's LogCat.

Author

gotev (Aleksandar Gotev)

Types

Link copied to clipboard
interface LoggerDelegate
Link copied to clipboard

Functions

Link copied to clipboard
open fun debug(tag: String, message: String)
Link copied to clipboard
open fun error(tag: String, message: String)
open fun error(tag: String, message: String, exception: Throwable)
Link copied to clipboard
open fun info(tag: String, message: String)
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
open fun setLogLevel(level: Logger.LogLevel)
Link copied to clipboard
open fun warning(tag: String, message: String)