HADOOP-8002. SecurityUtil acquired token message should be a debug rather than info. (Arpit Gupta via mahadev) - Merging r1236976 from trunk.
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/branches/branch-0.23@1236977 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
0b69afc808
commit
e1ff641291
@ -84,6 +84,9 @@ Release 0.23.1 - Unreleased
|
|||||||
HADOOP-7988. Upper case in hostname part of the principals doesn't work with
|
HADOOP-7988. Upper case in hostname part of the principals doesn't work with
|
||||||
kerberos. (jitendra)
|
kerberos. (jitendra)
|
||||||
|
|
||||||
|
HADOOP-8002. SecurityUtil acquired token message should be a debug rather than info.
|
||||||
|
(Arpit Gupta via mahadev)
|
||||||
|
|
||||||
OPTIMIZATIONS
|
OPTIMIZATIONS
|
||||||
|
|
||||||
BUG FIXES
|
BUG FIXES
|
||||||
|
@ -409,7 +409,9 @@ public static void setTokenService(Token<?> token, InetSocketAddress addr) {
|
|||||||
Text service = buildTokenService(addr);
|
Text service = buildTokenService(addr);
|
||||||
if (token != null) {
|
if (token != null) {
|
||||||
token.setService(service);
|
token.setService(service);
|
||||||
LOG.info("Acquired token "+token); // Token#toString() prints service
|
if (LOG.isDebugEnabled()) {
|
||||||
|
LOG.debug("Acquired token "+token); // Token#toString() prints service
|
||||||
|
}
|
||||||
} else {
|
} else {
|
||||||
LOG.warn("Failed to get token for service "+service);
|
LOG.warn("Failed to get token for service "+service);
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user