Skip to content

Commit 89c29c4

Browse files
committed
Fix log
Related to #19.
1 parent 290fb02 commit 89c29c4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/java/org/elasticsearch/discovery/gce/GceUnicastHostsProvider.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -226,8 +226,8 @@ public List<DiscoveryNode> buildDynamicNodes() {
226226
// If user has set `es_port` metadata, we don't need to ping all ports
227227
// we only limit to 1 addresses, makes no sense to ping 100 ports
228228
for (int i = 0; i < addresses.length; i++) {
229-
logger.trace("adding {}, type {}, image {}, address {}, transport_address {}, status {}", name, type
230-
, ip_private, addresses[i], status);
229+
logger.trace("adding {}, type {}, address {}, transport_address {}, status {}", name, type,
230+
ip_private, addresses[i], status);
231231
cachedDiscoNodes.add(new DiscoveryNode("#cloud-" + name + "-" + i, addresses[i], Version.CURRENT));
232232
}
233233
}

0 commit comments

Comments
 (0)