Skip to content

Commit bc2699a

Browse files
committed
log
1 parent 79ebe40 commit bc2699a

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

rls/src/main/java/io/grpc/rls/LinkedHashLruCache.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -136,6 +136,8 @@ public final V cache(K key, V value) {
136136
estimatedSizeBytes += size;
137137
existing = delegate.put(key, new SizedValue(size, value));
138138
if (existing != null) {
139+
System.err.println("Evicting existing value " + existing);
140+
System.err.flush();
139141
fireOnEviction(key, existing, EvictionType.REPLACED);
140142
}
141143
return existing == null ? null : existing.value;

0 commit comments

Comments
 (0)