Skip to content

Commit

Permalink
remove noise
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisjenx committed Feb 4, 2025
1 parent 323cb5f commit 78c042d
Showing 1 changed file with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -68,9 +68,7 @@ open class KeyValueStorage<T : Any>(
expires_at = expiresAt?.toEpochMilliseconds(),
read_at = null,
write_at = now,
value_ = serializer.serialize(type, value)?.also {
println("Inserted value: $it")
} ?: error("Failed to serialize value")
value_ = serializer.serialize(type, value) ?: error("Failed to serialize value")
)
entityQueries.insertEntity(entity, ignoreIfExists)
updateWriteAt(currentCoroutineContext()[RequestHash.Key]?.hash ?: entity.hashCode())
Expand Down

0 comments on commit 78c042d

Please sign in to comment.