-
Notifications
You must be signed in to change notification settings - Fork 19
Open
Description
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
Metadata
Metadata
Assignees
Labels
No labels