Moves SoftCache logs to the app

This commit is contained in:
Vitor Pamplona
2025-08-31 12:10:51 -04:00
parent ea7a2f3426
commit 5397e4e22e
2 changed files with 8 additions and 2 deletions
@@ -117,9 +117,7 @@ class LargeSoftCache<K, V> : CacheOperations<K, V> {
}
keysToRemove.forEach { key, value ->
cache.remove(key, value)
println("Cleaned up entry for key: $key (object was garbage collected)")
}
println("Cache cleanup completed. Remaining size: ${cache.size}")
}
override fun forEach(consumer: BiConsumer<K, V>) {