aboutsummaryrefslogtreecommitdiff
path: root/app/src/main/kotlin/com/pitchedapps/frost/db/NotificationDb.kt
diff options
context:
space:
mode:
authorAllan Wang <me@allanwang.ca>2019-03-07 14:59:40 -0500
committerAllan Wang <me@allanwang.ca>2019-03-07 14:59:40 -0500
commit12f491737ec2e2d774a816e84170ff352d1b6cd6 (patch)
treef61b20f5ba7630fecef50976733e26fbc4ef5a52 /app/src/main/kotlin/com/pitchedapps/frost/db/NotificationDb.kt
parentf1878133d8af686ce8c27acffe28f26e9dda5165 (diff)
downloadfrost-12f491737ec2e2d774a816e84170ff352d1b6cd6.tar.gz
frost-12f491737ec2e2d774a816e84170ff352d1b6cd6.tar.bz2
frost-12f491737ec2e2d774a816e84170ff352d1b6cd6.zip
Add cache test
Diffstat (limited to 'app/src/main/kotlin/com/pitchedapps/frost/db/NotificationDb.kt')
-rw-r--r--app/src/main/kotlin/com/pitchedapps/frost/db/NotificationDb.kt2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/src/main/kotlin/com/pitchedapps/frost/db/NotificationDb.kt b/app/src/main/kotlin/com/pitchedapps/frost/db/NotificationDb.kt
index 7f41fbf8..d2771754 100644
--- a/app/src/main/kotlin/com/pitchedapps/frost/db/NotificationDb.kt
+++ b/app/src/main/kotlin/com/pitchedapps/frost/db/NotificationDb.kt
@@ -146,7 +146,7 @@ suspend fun NotificationDao.saveNotifications(type: String, notifs: List<Notific
_saveNotifications(type, notifs)
true
} catch (e: Exception) {
- L.e(e) { "Notif save failed" }
+ L.e(e) { "Notif save failed for $type" }
false
}
}