Skip to content

Commit c46120f

Browse files
committed
Modfiy casing in JVM home log message
This makes the log message consistent with the following line that shows the JVM arguments.
1 parent 3ca5662 commit c46120f

File tree

1 file changed

+1
-1
lines changed
  • server/src/main/java/org/elasticsearch/node

1 file changed

+1
-1
lines changed

server/src/main/java/org/elasticsearch/node/Node.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -291,7 +291,7 @@ protected Node(
291291
Constants.JVM_NAME,
292292
Constants.JAVA_VERSION,
293293
Constants.JVM_VERSION);
294-
logger.info("JVM Home [{}]", System.getProperty("java.home"));
294+
logger.info("JVM home [{}]", System.getProperty("java.home"));
295295
logger.info("JVM arguments {}", Arrays.toString(jvmInfo.getInputArguments()));
296296
if (Build.CURRENT.isProductionRelease() == false) {
297297
logger.warn(

0 commit comments

Comments
 (0)