Skip to content

Commit

Permalink
fix info string about transport addresses used
Browse files Browse the repository at this point in the history
  • Loading branch information
lonvia committed Aug 31, 2022
1 parent 5209cfb commit 6c3ec09
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/de/komoot/photon/elasticsearch/Server.java
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ public Server start(String clusterName, String[] transportAddresses) {

esClient = trClient;

log.info("Started elastic search client connected to " + transportAddresses);
log.info("Started elastic search client connected to " + String.join(", ", transportAddresses));

} else {

Expand Down

0 comments on commit 6c3ec09

Please sign in to comment.