Emit some debug info when checking Java version.

This commit is contained in:
Michael Bayne
2015-03-18 09:10:41 -07:00
parent b3f71b7514
commit 8d0455a03c
@@ -798,6 +798,9 @@ public class Application
// parse the version out of the java.version (or custom) system property
long version = SysProps.parseJavaVersion(_javaVersionProp, _javaVersionRegex);
log.info("Checking Java version", "current", version,
"wantMin", _javaMinVersion, "wantMax", _javaMaxVersion);
if (_javaExactVersionRequired) {
if (version == _javaMinVersion) return true;
else {