HADOOP-8931. Add Java version to startup message. Contributed by Eli Collins

git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/branches/branch-2@1399015 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Eli Collins 2012-10-16 22:04:26 +00:00
parent 0f4838ab6b
commit b5e210f215
2 changed files with 4 additions and 1 deletions

View File

@ -54,6 +54,8 @@ Release 2.0.3-alpha - Unreleased
HADOOP-8922. Provide alternate JSONP output for JMXJsonServlet to allow HADOOP-8922. Provide alternate JSONP output for JMXJsonServlet to allow
javascript in browser (Damien Hardy via bobby) javascript in browser (Damien Hardy via bobby)
HADOOP-8931. Add Java version to startup message. (eli)
OPTIMIZATIONS OPTIMIZATIONS
HADOOP-8866. SampleQuantiles#query is O(N^2) instead of O(N). (Andrew Wang HADOOP-8866. SampleQuantiles#query is O(N^2) instead of O(N). (Andrew Wang

View File

@ -608,7 +608,8 @@ public class StringUtils {
" build = " + VersionInfo.getUrl() + " -r " " build = " + VersionInfo.getUrl() + " -r "
+ VersionInfo.getRevision() + VersionInfo.getRevision()
+ "; compiled by '" + VersionInfo.getUser() + "; compiled by '" + VersionInfo.getUser()
+ "' on " + VersionInfo.getDate()} + "' on " + VersionInfo.getDate(),
" java = " + System.getProperty("java.version") }
) )
); );