Change MaxMind log from a warn to an info
This commit is contained in:
parent
10e9ac5bea
commit
75aac64e91
@ -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) -> {
|
||||
|
Loading…
Reference in New Issue
Block a user