Skip to content

Commit 1b2ffa2

Browse files
authored
Fix this log level (#114921)
@masseyke noticed this in his review of #114847. I fixed it in the backport to `8.x` via #114872, but this PR is needed to get the same fix into `main`.
1 parent bd754f7 commit 1b2ffa2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

modules/ingest-geoip/src/main/java/org/elasticsearch/ingest/geoip/EnterpriseGeoIpDownloader.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -617,7 +617,7 @@ public Checksum checksum() throws IOException {
617617
}
618618
@SuppressWarnings("unchecked")
619619
String md5 = ((Map<String, String>) checksums.get("checksums")).get("md5");
620-
logger.info("checksum was [{}]", md5);
620+
logger.trace("checksum was [{}]", md5);
621621

622622
var matcher = MD5_CHECKSUM_PATTERN.matcher(md5);
623623
boolean match = matcher.matches();

0 commit comments

Comments
 (0)