Logger

interface Logger

Writes logs

Inheritors

Types

Link copied to clipboard

Logging level.

Functions

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

Writes tag and message to the log on Level.Debug

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

Writes tag and message to the log on Level.Error

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

Writes tag and message to the log on Level.Information

Link copied to clipboard
abstract fun logException(e: Throwable?)

Shows log for exception

Link copied to clipboard
abstract fun logMethod()

Shows log for invoked method

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

Writes tag and message to the log on Level.Warning