interface FastLog
abstract fun d(message: String, tag: String? = null): Unit |
|
abstract fun i(message: String, tag: String? = null): Unit |
|
abstract fun v(message: String, tag: String? = null): Unit |
class SystemFastLog : FastLog
Default FastLog implementation which prints the logs to standard output |