Copilot commented on code in PR #3681: URL: https://github.com/apache/logging-log4j2/pull/3681#discussion_r2105291861
########## log4j-core/src/main/java/org/apache/logging/log4j/core/util/internal/InternalLoggerRegistry.java: ########## @@ -53,13 +58,43 @@ public final class InternalLoggerRegistry { new WeakHashMap<>(); private final ReadWriteLock lock = new ReentrantReadWriteLock(); - private final Lock readLock = lock.readLock(); - private final Lock writeLock = lock.writeLock(); + // ReferenceQueue to track stale WeakReferences + private final ReferenceQueue<Logger> staleLoggerRefs = new ReferenceQueue<>(); + public InternalLoggerRegistry() {} + /** + * Expunges stale entries for logger references and message factories. + */ + private void expungeStaleEntries() { + Reference<? extends Logger> loggerRef = staleLoggerRefs.poll(); + + if (loggerRef != null) { + writeLock.lock(); + try { + while (staleLoggerRefs.poll() != null) { Review Comment: [nitpick] Consider adding a clarifying comment in the while loop that drains the reference queue to explicitly state that its purpose is to clear any remaining stale entries. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: notifications-unsubscr...@logging.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org