interface LogSink
(source)
abstract fun log(priority: Priority = Log.Priority.DEBUG, tag: String? = null, throwable: Throwable? = null, message: String? = null): Unit |
class AndroidLogSink : LogSink
LogSink implementation that writes to Android's log. |