Skip to content

Commit

Permalink
Merge branch '0.7.x'
Browse files Browse the repository at this point in the history
  • Loading branch information
violetagg committed Oct 30, 2018
2 parents 72edb0f + 3a5ede1 commit 69c404d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/main/java/reactor/netty/tcp/TcpResources.java
Original file line number Diff line number Diff line change
Expand Up @@ -238,9 +238,9 @@ protected static <T extends TcpResources> T getOrCreate(AtomicReference<T> 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 = provider == null ? "default" : "provided";
log.warn("[{}] resources will use the {} ConnectionProvider: {}", name, poolType, update.defaultProvider);
log.debug("[{}] resources will use the {} ConnectionProvider: {}", name, poolType, update.defaultProvider);
}
return update;
}
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/reactor/netty/udp/UdpResources.java
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ protected static UdpResources getOrCreate(@Nullable 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;
}
Expand Down

0 comments on commit 69c404d

Please sign in to comment.