Chore: redis logging 설정

This commit is contained in:
UNGGU0704 2025-06-17 15:39:59 +09:00
parent 714122726d
commit d1128a27a2

View File

@ -42,6 +42,7 @@ public class CacheAdapter implements CachePort {
log.debug("캐시 저장: key={}, ttl={}초", key, ttlSeconds); log.debug("캐시 저장: key={}, ttl={}초", key, ttlSeconds);
} catch (Exception e) { } catch (Exception e) {
log.warn("캐시 저장 실패: key={}, error={}", key, e.getMessage()); log.warn("캐시 저장 실패: key={}, error={}", key, e.getMessage());
e.printStackTrace();
} }
} }