Log registrar IP address whitelist when auth is denied

-------------
Created by MOE: https://github.com/google/moe
MOE_MIGRATED_REVID=190462466
This commit is contained in:
mcilwain
2018-04-02 16:38:28 -04:00
committed by jianglai
parent 0154cf09bb
commit fea495e319
@@ -112,8 +112,8 @@ public class TlsCredentials implements TransportCredentials {
}
}
logger.infofmt(
"Authentication error: IP address %s is not whitelisted for registrar %s.",
clientInetAddr, registrar.getClientId());
"Authentication error: IP address %s is not whitelisted for registrar %s; whitelist is: %s",
clientInetAddr, registrar.getClientId(), ipWhitelist);
throw new BadRegistrarIpAddressException();
}