You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@daffodil.apache.org by ar...@apache.org on 2023/07/12 18:53:58 UTC

[daffodil-vscode] branch main updated: Add runtime jvm info to startup banner.

This is an automated email from the ASF dual-hosted git repository.

arosien pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/daffodil-vscode.git


The following commit(s) were added to refs/heads/main by this push:
     new 40d3663  Add runtime jvm info to startup banner.
40d3663 is described below

commit 40d3663330e54ca50adadb47061534b004030d05
Author: Adam Rosien <ad...@rosien.net>
AuthorDate: Tue Jul 11 10:16:15 2023 -0700

    Add runtime jvm info to startup banner.
---
 debugger/src/main/scala/org.apache.daffodil.debugger.dap/DAPodil.scala | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/debugger/src/main/scala/org.apache.daffodil.debugger.dap/DAPodil.scala b/debugger/src/main/scala/org.apache.daffodil.debugger.dap/DAPodil.scala
index a3b6f54..829d4e9 100644
--- a/debugger/src/main/scala/org.apache.daffodil.debugger.dap/DAPodil.scala
+++ b/debugger/src/main/scala/org.apache.daffodil.debugger.dap/DAPodil.scala
@@ -436,6 +436,8 @@ object DAPodil extends IOApp {
         |  daffodilVersion: ${BuildInfo.daffodilVersion}
         |  scalaVersion: ${BuildInfo.scalaVersion}
         |  sbtVersion: ${BuildInfo.sbtVersion}
+        |Runtime info:
+        |  JVM version: ${System.getProperty("java.version")} (${System.getProperty("java.home")})
         |******************************************************""".stripMargin
 
   def run(args: List[String]): IO[ExitCode] =