Write job failure exceptions to error log

This commit is contained in:
arkon
2022-01-26 22:21:01 -05:00
parent 18ef5c6ff9
commit 1b71e4cee7
4 changed files with 11 additions and 1 deletions
@@ -18,7 +18,7 @@ class DelayedTrackingStore(context: Context) {
val (_, lastChapterRead) = preferences.getString(trackId, "0:0.0")!!.split(":")
if (track.last_chapter_read > lastChapterRead.toFloat()) {
val value = "${track.manga_id}:${track.last_chapter_read}"
logcat(LogPriority.INFO) { "Queuing track item: $trackId, $value" }
logcat(LogPriority.DEBUG) { "Queuing track item: $trackId, $value" }
preferences.edit {
putString(trackId, value)
}
@@ -31,6 +31,7 @@ class DelayedTrackingStore(context: Context) {
}
}
@Suppress("UNCHECKED_CAST")
fun getItems(): List<DelayedTrackingItem> {
return (preferences.all as Map<String, String>).entries
.map {