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/trunk@1532477 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Andrew Wang 2013-10-15 18:35:49 +00:00
parent 0a5f0efcb4
commit 98b29a3621
2 changed files with 4 additions and 0 deletions

View File

@ -407,6 +407,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

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