Skip to content
This repository was archived by the owner on May 30, 2024. It is now read-only.

Commit cda543e

Browse files
authored
Merge pull request #60 from launchdarkly/eb/ch13390/redis-watch-log-level
reduce "same or lower version" log level to debug
2 parents d5704eb + b48f6fb commit cda543e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/com/launchdarkly/client/RedisFeatureStore.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -246,7 +246,7 @@ private <T extends VersionedData> void updateItemWithVersioning(VersionedDataKin
246246
VersionedData oldItem = getRedisEvenIfDeleted(kind, newItem.getKey(), jedis);
247247

248248
if (oldItem != null && oldItem.getVersion() >= newItem.getVersion()) {
249-
logger.warn("Attempted to {} key: {} version: {}" +
249+
logger.debug("Attempted to {} key: {} version: {}" +
250250
" with a version that is the same or older: {} in \"{}\"",
251251
newItem.isDeleted() ? "delete" : "update",
252252
newItem.getKey(), oldItem.getVersion(), newItem.getVersion(), kind.getNamespace());

0 commit comments

Comments
 (0)