Skip to content

Commit

Permalink
Fix logging message for used bind address
Browse files Browse the repository at this point in the history
Fixes: hazelcast#11783

(cherry picked from commit 5c38744)
  • Loading branch information
Matko Medenjak committed Nov 21, 2017
1 parent fa46ea8 commit 2778cd8
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -60,7 +60,7 @@ public DelegatingAddressPicker(MemberAddressProvider memberAddressProvider, Netw
public void pickAddress() throws Exception {
try {
bindAddress = memberAddressProvider.getBindAddress();
logger.info("Using bind address: " + publicAddress);
logger.info("Using bind address: " + bindAddress);

publicAddress = memberAddressProvider.getPublicAddress();
validatePublicAddress(publicAddress);
Expand Down

0 comments on commit 2778cd8

Please sign in to comment.