This is an automated email from the ASF dual-hosted git repository. tv pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/commons-jcs.git
commit a47c29ebd0612fa29a2c3634d468666d5986e691 Author: Thomas Vandahl <[email protected]> AuthorDate: Tue Mar 30 20:21:58 2021 +0200 Fix log message --- .../jcs3/auxiliary/lateral/socket/tcp/LateralTCPCacheFactory.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/commons-jcs-core/src/main/java/org/apache/commons/jcs3/auxiliary/lateral/socket/tcp/LateralTCPCacheFactory.java b/commons-jcs-core/src/main/java/org/apache/commons/jcs3/auxiliary/lateral/socket/tcp/LateralTCPCacheFactory.java index 720dbe1..aeb0a05 100644 --- a/commons-jcs-core/src/main/java/org/apache/commons/jcs3/auxiliary/lateral/socket/tcp/LateralTCPCacheFactory.java +++ b/commons-jcs-core/src/main/java/org/apache/commons/jcs3/auxiliary/lateral/socket/tcp/LateralTCPCacheFactory.java @@ -273,8 +273,8 @@ public class LateralTCPCacheFactory final String key = ilca.getUdpDiscoveryAddr() + ":" + ilca.getUdpDiscoveryPort(); return lTCPDLInstances.computeIfAbsent(key, key1 -> { - log.info("Created new discovery listener for cacheName {0} for request {1}", - key1, ilca.getCacheName()); + log.info("Created new discovery listener for cacheName {0} and request {1}", + ilca.getCacheName(), key1); return new LateralTCPDiscoveryListener( this.getName(), (CompositeCacheManager) cacheManager, cacheEventLogger, elementSerializer);
