Skip to content

Commit b28c021

Browse files
committed
[bugfix] Fix minor branding issue
1 parent 5976f39 commit b28c021

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

exist-core/src/main/java/org/exist/jetty/JettyStart.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ public class JettyStart extends Observable implements LifeCycle.Listener {
117117
.description("Path to Jetty Config File")
118118
.build();
119119
private static final Argument<String> existConfigFilePath = stringArgument()
120-
.description("Path to eXist-db Config File")
120+
.description("Path to Elemental Config File")
121121
.build();
122122
private static final Argument<?> helpArg = helpArgument("-h", "--help");
123123

@@ -240,9 +240,9 @@ public synchronized void run(final String[] args, final Observer observer) {
240240
logger.info("Number of processors available to JVM: {}", Runtime.getRuntime().availableProcessors());
241241

242242
logger.info("Running as user '{}'", System.getProperty("user.name", "(unknown user.name)"));
243-
logger.info("[eXist Home : {}]", System.getProperty("exist.home", "unknown"));
244-
logger.info("[eXist Version : {}]", SystemProperties.getInstance().getSystemProperty("product-version", "unknown"));
245-
logger.info("[eXist Build : {}]", SystemProperties.getInstance().getSystemProperty("product-build", "unknown"));
243+
logger.info("[Elemental Home : {}]", System.getProperty("exist.home", "unknown"));
244+
logger.info("[Elemental Version : {}]", SystemProperties.getInstance().getSystemProperty("product-version", "unknown"));
245+
logger.info("[Elemental Build : {}]", SystemProperties.getInstance().getSystemProperty("product-build", "unknown"));
246246
logger.info("[Git commit : {}]", SystemProperties.getInstance().getSystemProperty("git-commit", "unknown"));
247247
logger.info("[Git commit timestamp : {}]", SystemProperties.getInstance().getSystemProperty("git-commit-timestamp", "unknown"));
248248

0 commit comments

Comments
 (0)