diff --git a/src/main/java/reactor/ipc/netty/tcp/TcpResources.java b/src/main/java/reactor/ipc/netty/tcp/TcpResources.java index d65d66937f..3eda24eff2 100644 --- a/src/main/java/reactor/ipc/netty/tcp/TcpResources.java +++ b/src/main/java/reactor/ipc/netty/tcp/TcpResources.java @@ -235,9 +235,9 @@ protected static T getOrCreate(AtomicReference ref, } else { String loopType = loops == null ? "default" : "provided"; - log.warn("[{}] resources will use the {} LoopResources: {}", name, loopType, update.defaultLoops); + log.debug("[{}] resources will use the {} LoopResources: {}", name, loopType, update.defaultLoops); String poolType = pools == null ? "default" : "provided"; - log.warn("[{}] resources will use the {} PoolResources: {}", name, poolType, update.defaultPools); + log.debug("[{}] resources will use the {} PoolResources: {}", name, poolType, update.defaultPools); } return update; } diff --git a/src/main/java/reactor/ipc/netty/udp/UdpResources.java b/src/main/java/reactor/ipc/netty/udp/UdpResources.java index be5d02df23..444dd115f3 100644 --- a/src/main/java/reactor/ipc/netty/udp/UdpResources.java +++ b/src/main/java/reactor/ipc/netty/udp/UdpResources.java @@ -194,7 +194,7 @@ protected static UdpResources getOrCreate(LoopResources loops, } else { String loopType = loops == null ? "default" : "provided"; - log.warn("[{}] resources will use the {} LoopResources: {}", name, loopType, update.defaultLoops); + log.debug("[{}] resources will use the {} LoopResources: {}", name, loopType, update.defaultLoops); } return update; }