Skip to content

Commit

Permalink
refactor: EHCache에서 event.newValue, oldValue 로깅하지 않도록 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
hun-ca committed Jul 21, 2024
1 parent ca274c1 commit fe56d5a
Showing 1 changed file with 1 addition and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,6 @@ class LocalCacheEventLogger : CacheEventListener<Any, Any> {
private val log = KotlinLogging.logger {}

override fun onEvent(event: CacheEvent<out Any, out Any>) {
log.debug {
"Cache event: ${event.type} for item with key: ${event.key}. " +
"Old value: ${event.oldValue}, New value: ${event.newValue}"
}
log.debug { "Local Cache event: ${event.type} for item with key: ${event.key}. " }
}
}

0 comments on commit fe56d5a

Please sign in to comment.