treessence / fr.bipi.tressence.sentry / SentryEventTree

SentryEventTree

class SentryEventTree : PriorityTree

Logger that will log to sentry server

Parameters

priority - priority from witch log will be logged

Constructors

<init>

SentryEventTree(priority: Int, filter: Filter = NoFilter.INSTANCE)

Logger that will log to sentry server

Inherited Properties

filter

var filter: Filter

priorityFilter

val priorityFilter: PriorityFilter

Functions

log

fun log(priority: Int, tag: String?, message: String, t: Throwable?): Unit

Inherited Functions

isLoggable

open fun isLoggable(priority: Int): Boolean
open fun isLoggable(tag: String?, priority: Int): Boolean

skipLog

fun skipLog(priority: Int, tag: String?, message: String, t: Throwable?): Boolean

Use the additional filter to determine if this log needs to be skipped

withFilter

fun withFilter(newFilter: Filter): PriorityTree