From 9ce740a2ebd2af87a28db802de8f0a78af3f7e2a Mon Sep 17 00:00:00 2001 From: Jason Tedor Date: Wed, 20 Mar 2019 00:05:30 -0400 Subject: [PATCH] Modfiy casing in JVM home log message This makes the log message consistent with the following line that shows the JVM arguments. --- server/src/main/java/org/elasticsearch/node/Node.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/src/main/java/org/elasticsearch/node/Node.java b/server/src/main/java/org/elasticsearch/node/Node.java index 8a1d5208c17..356219b046e 100644 --- a/server/src/main/java/org/elasticsearch/node/Node.java +++ b/server/src/main/java/org/elasticsearch/node/Node.java @@ -289,7 +289,7 @@ public class Node implements Closeable { Constants.JVM_NAME, Constants.JAVA_VERSION, Constants.JVM_VERSION); - logger.info("JVM Home [{}]", System.getProperty("java.home")); + logger.info("JVM home [{}]", System.getProperty("java.home")); logger.info("JVM arguments {}", Arrays.toString(jvmInfo.getInputArguments())); if (Build.CURRENT.isProductionRelease() == false) { logger.warn(