]> source.dussan.org Git - sonarqube.git/commitdiff
SONAR-5483 - Removed useless output
authorStephane Gamard <stephane.gamard@searchbox.com>
Tue, 5 Aug 2014 12:41:16 +0000 (14:41 +0200)
committerStephane Gamard <stephane.gamard@searchbox.com>
Tue, 5 Aug 2014 12:42:25 +0000 (14:42 +0200)
server/sonar-search/src/main/java/org/sonar/search/SearchServer.java

index 63339100e3ca2d4107f494c4f7fbaea658dd16fb..2b5bc50e4f3acc5e7f4f74691a6b6e6df59647af 100644 (file)
@@ -94,11 +94,8 @@ public class SearchServer extends MonitoredProcess {
       .put("path.logs", new File(logDir).getAbsolutePath());
 
     if (StringUtils.isNotEmpty(props.of(ES_CLUSTER_INNET, null))) {
-
-      System.out.println("props.of(ES_CLUSTER_INNET, null) = " + props.of(ES_CLUSTER_INNET, null));
       esSettings.put("discovery.zen.ping.unicast.hosts", props.of(ES_CLUSTER_INNET));
       esSettings.put("discovery.zen.minimum_master_nodes", "2");
-
     }
 
     initAnalysis(esSettings);