Change MaxMind log from a warn to an info

This commit is contained in:
Colin McDonald 2016-06-26 19:33:37 -04:00
parent 10e9ac5bea
commit 75aac64e91
1 changed files with 1 additions and 1 deletions

View File

@ -23,7 +23,7 @@ public class MaxMindUtils {
public static void getInsights(String ip, SingleResultCallback<MaxMindResult> callback) {
String authHeader = "Basic " + Base64.getEncoder().encodeToString((maxMindUserId + ":" + maxMindLicenseKey).getBytes(Charsets.UTF_8));
log.warn("Requesting ip info for " + ip + " from MaxMind.");
log.info("Requesting ip info for " + ip + " from MaxMind.");
httpsClient.get(443, "geoip.maxmind.com", "/geoip/v2.1/insights/" + ip, (response) -> {
response.bodyHandler((body) -> {