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-03-26 07:38:12 -07:00 committed by jianglai
parent 0154cf09bb
commit fea495e319

View file

@ -112,8 +112,8 @@ public class TlsCredentials implements TransportCredentials {
} }
} }
logger.infofmt( logger.infofmt(
"Authentication error: IP address %s is not whitelisted for registrar %s.", "Authentication error: IP address %s is not whitelisted for registrar %s; whitelist is: %s",
clientInetAddr, registrar.getClientId()); clientInetAddr, registrar.getClientId(), ipWhitelist);
throw new BadRegistrarIpAddressException(); throw new BadRegistrarIpAddressException();
} }