mirror of
https://github.com/DaanVandenBosch/phantasmal-world.git
synced 2025-04-04 06:28:28 +08:00
Added more logging to Persister.
This commit is contained in:
parent
4792dc1172
commit
64fb12f985
@ -24,10 +24,12 @@ abstract class Persister(private val store: KeyValueStore) {
|
|||||||
@Suppress("RedundantSuspendModifier")
|
@Suppress("RedundantSuspendModifier")
|
||||||
protected suspend fun <T> persist(key: String, data: T, serializer: KSerializer<T>) {
|
protected suspend fun <T> persist(key: String, data: T, serializer: KSerializer<T>) {
|
||||||
withContext(Dispatchers.Default) {
|
withContext(Dispatchers.Default) {
|
||||||
|
logger.trace { """Persisting data with key "$key".""" }
|
||||||
|
|
||||||
try {
|
try {
|
||||||
store.put(key, format.encodeToString(serializer, data))
|
store.put(key, format.encodeToString(serializer, data))
|
||||||
} catch (e: Throwable) {
|
} catch (e: Throwable) {
|
||||||
logger.error(e) { "Couldn't persist ${key}." }
|
logger.error(e) { """Couldn't persist data with key "$key".""" }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -47,11 +49,20 @@ abstract class Persister(private val store: KeyValueStore) {
|
|||||||
@Suppress("RedundantSuspendModifier")
|
@Suppress("RedundantSuspendModifier")
|
||||||
protected suspend fun <T> load(key: String, serializer: KSerializer<T>): T? =
|
protected suspend fun <T> load(key: String, serializer: KSerializer<T>): T? =
|
||||||
withContext(Dispatchers.Default) {
|
withContext(Dispatchers.Default) {
|
||||||
|
logger.trace { """Loading persisted data with key "$key".""" }
|
||||||
|
|
||||||
try {
|
try {
|
||||||
val json = store.get(key)
|
val json = store.get(key)
|
||||||
json?.let { format.decodeFromString(serializer, it) }
|
|
||||||
|
if (json == null) {
|
||||||
|
logger.trace { """No persisted data with key "$key".""" }
|
||||||
|
null
|
||||||
|
} else {
|
||||||
|
logger.trace { """Loaded persisted data with key "$key".""" }
|
||||||
|
format.decodeFromString(serializer, json)
|
||||||
|
}
|
||||||
} catch (e: Throwable) {
|
} catch (e: Throwable) {
|
||||||
logger.error(e) { "Couldn't load ${key}." }
|
logger.error(e) { """Couldn't load persisted data with key "$key".""" }
|
||||||
null
|
null
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user