Hi! Is there a way to disable exception logging? The problem is AsyncCache itself prints the log
try {
Caffeine.newBuilder().asLoadingCache<Any, Nothing> {
throw Exception()
// exception prints itself "[com.github.benmanes.caffeine.cache.LocalAsyncCache] Exception thrown during asynchronous load"
}.get(Unit)
} catch(Throwable e) {
// we also get the exception here
}
Of course we can disable the whole Caffeine logging via logger configuration, but it would be nice to just avoid logging somehow
Hi! Is there a way to disable exception logging? The problem is AsyncCache itself prints the log
Of course we can disable the whole Caffeine logging via logger configuration, but it would be nice to just avoid logging somehow