You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
FairEmail/app/src/main/java/com/bugsnag/android/DebugLogger.kt

41 lines
786 B

package com.bugsnag.android
import android.util.Log
internal object DebugLogger : Logger {
private const val TAG = "Bugsnag"
override fun e(msg: String) {
Log.e(TAG, msg)
}
override fun e(msg: String, throwable: Throwable) {
Log.e(TAG, msg, throwable)
}
override fun w(msg: String) {
Log.w(TAG, msg)
}
override fun w(msg: String, throwable: Throwable) {
Log.w(TAG, msg, throwable)
}
override fun i(msg: String) {
Log.i(TAG, msg)
}
override fun i(msg: String, throwable: Throwable) {
Log.i(TAG, msg, throwable)
}
override fun d(msg: String) {
Log.d(TAG, msg)
}
override fun d(msg: String, throwable: Throwable) {
Log.d(TAG, msg, throwable)
}
}