mirror of
https://github.com/jellyfin/jellyfin-android.git
synced 2026-09-03 05:10:27 +03:00
Fix crash in apiclient logger
This commit is contained in:
@@ -5,18 +5,18 @@ import timber.log.Timber
|
||||
|
||||
class TimberLogger : ILogger {
|
||||
override fun debug(formatString: String?, vararg paramList: Any?) {
|
||||
Timber.d(formatString, paramList)
|
||||
Timber.d(formatString, *paramList)
|
||||
}
|
||||
|
||||
override fun info(formatString: String?, vararg paramList: Any?) {
|
||||
Timber.i(formatString, paramList)
|
||||
Timber.i(formatString, *paramList)
|
||||
}
|
||||
|
||||
override fun error(formatString: String?, vararg paramList: Any?) {
|
||||
Timber.e(formatString, paramList)
|
||||
Timber.e(formatString, *paramList)
|
||||
}
|
||||
|
||||
override fun error(formatString: String?, exception: Exception?, vararg paramList: Any?) {
|
||||
Timber.e(exception, formatString, paramList)
|
||||
Timber.e(exception, formatString, *paramList)
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user