Browse Source

modify log message

Shinsuke Sugaya 9 years ago
parent
commit
3d7c6bc49f
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/main/java/org/codelibs/fess/es/client/FessEsClient.java

+ 1 - 1
src/main/java/org/codelibs/fess/es/client/FessEsClient.java

@@ -434,7 +434,7 @@ public class FessEsClient implements Client {
     private void waitForYellowStatus() {
         final ClusterHealthResponse response = client.admin().cluster().prepareHealth().setWaitForYellowStatus().execute().actionGet();
         if (logger.isDebugEnabled()) {
-            logger.debug("Elasticsearch Cluster Status: {0}", response.getStatus());
+            logger.debug("Elasticsearch Cluster Status: " + response.getStatus());
         }
     }