We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6b81fd9 commit ef37f20Copy full SHA for ef37f20
komf-core/src/commonMain/kotlin/snd/komf/providers/mangabaka/db/MangaBakaDbDownloadTimestamp.kt
@@ -24,10 +24,10 @@ class MangaBakaDbMetadata(
24
25
init {
26
timestamp = runCatching { Instant.parse(timestampFile.readText()) }
27
- .onFailure { logger.catching(it) }
+ .onFailure { logger.warn { "failed to find MangaBaka timestamp file" } }
28
.getOrNull()
29
checksum = runCatching { checksumFile.readText() }
30
+ .onFailure { logger.warn { "failed to find MangaBaka checksum file" } }
31
32
}
33
0 commit comments