commit | 2cd3736f7b1c8b7c6108e787a7f3b6f05f4daca6 | [log] [tgz] |
---|---|---|
author | Ray Milkey <ray@opennetworking.org> | Thu Dec 06 13:20:02 2018 -0800 |
committer | Ray Milkey <ray@opennetworking.org> | Mon Dec 10 17:23:40 2018 +0000 |
tree | f64456f5ce887c5f544062b3690cbd961e0dd05a | |
parent | 2921abc38831cc2b7973ff306679e149faacaf50 [diff] |
Add log message to display the JVM version Change-Id: I94bde3d825df80761a250364b5c7fc2e565a142f
diff --git a/core/net/src/main/java/org/onosproject/core/impl/CoreManager.java b/core/net/src/main/java/org/onosproject/core/impl/CoreManager.java index f707c26..e82efd7 100644 --- a/core/net/src/main/java/org/onosproject/core/impl/CoreManager.java +++ b/core/net/src/main/java/org/onosproject/core/impl/CoreManager.java
@@ -104,6 +104,9 @@ protected void activate() { registerApplication(CORE_APP_NAME); cfgService.registerProperties(getClass()); + log.info("ONOS starting up on Java version {}, JVM version {}", + System.getProperty("java.version"), + System.getProperty("java.vm.version")); } @Deactivate