HADOOP-100046. Print a log message when SSL is enabled (David S. Wang via wang)

git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/branches/branch-2@1532479 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Andrew Wang 2013-10-15 18:40:45 +00:00
parent ce9da0e32c
commit ea64a5a48d
2 changed files with 4 additions and 0 deletions

View File

@ -119,6 +119,9 @@ Release 2.2.1 - UNRELEASED
IMPROVEMENTS
HADOOP-10046. Print a log message when SSL is enabled.
(David S. Wang via wang)
OPTIMIZATIONS
BUG FIXES

View File

@ -340,6 +340,7 @@ public class HttpServer implements FilterContainer {
}
listener.setHost(bindAddress);
listener.setPort(port);
LOG.info("SSL is enabled on " + toString());
} else {
listenerStartedExternally = true;
listener = connector;