open class PriorityTree : DebugTree
Base class to filter logs by priority
PriorityTree(priority: Int, filter: Filter = NoFilter.INSTANCE)
Base class to filter logs by priority |
var filter: Filter |
|
val priorityFilter: PriorityFilter |
open fun isLoggable(priority: Int): Booleanopen fun isLoggable(tag: String?, priority: Int): Boolean |
|
fun skipLog(priority: Int, tag: String?, message: String, t: Throwable?): Boolean
Use the additional filter to determine if this log needs to be skipped |
|
fun |
open class FormatterPriorityTree : PriorityTree
Base class to filter logs by priority |
|
class SentryEventTree : PriorityTree
Logger that will log to sentry server |
|
class ThrowErrorTree : PriorityTree
An implementation of Timber.Tree which throws java.lang.Error when priority of log is exceeded the limit. Useful for development or test environment. |