Skip to content

Commit

Permalink
fix: drop ip acquired to debug log level (#29)
Browse files Browse the repository at this point in the history
  • Loading branch information
MikeDombo authored Mar 4, 2024
1 parent c9015da commit 8d56f65
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ void updateIps(Config config) {
List<InetAddress> ipAddresses = null;
try {
ipAddresses = ipDetector.getAllIpAddresses(config);
logger.atInfo().kv("IpAddresses", ipAddresses)
logger.atDebug().kv("IpAddresses", ipAddresses)
.log("Acquired host IP addresses");
if (ipAddresses.isEmpty()) {
return;
Expand Down

0 comments on commit 8d56f65

Please sign in to comment.