Repository: hadoop
Updated Branches:
  refs/heads/branch-2 782441d47 -> d6f6b99c8


HADOOP-11180. Change log message "token.Token: Cannot find class for token kind 
kms-dt" to debug. Contributed by Yi Liu.

(cherry picked from commit 3bfd29949fef6d8fb5df4c6398e77cde320d8c2d)


Project: http://git-wip-us.apache.org/repos/asf/hadoop/repo
Commit: http://git-wip-us.apache.org/repos/asf/hadoop/commit/d6f6b99c
Tree: http://git-wip-us.apache.org/repos/asf/hadoop/tree/d6f6b99c
Diff: http://git-wip-us.apache.org/repos/asf/hadoop/diff/d6f6b99c

Branch: refs/heads/branch-2
Commit: d6f6b99c83b0945c7d125a57650041d2e707ba0e
Parents: 782441d
Author: Andrew Wang <w...@apache.org>
Authored: Thu May 12 23:48:37 2016 -0700
Committer: Andrew Wang <w...@apache.org>
Committed: Thu May 12 23:48:58 2016 -0700

----------------------------------------------------------------------
 .../src/main/java/org/apache/hadoop/security/token/Token.java      | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/hadoop/blob/d6f6b99c/hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/security/token/Token.java
----------------------------------------------------------------------
diff --git 
a/hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/security/token/Token.java
 
b/hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/security/token/Token.java
index 2dbb3a8..b45d8dc 100644
--- 
a/hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/security/token/Token.java
+++ 
b/hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/security/token/Token.java
@@ -121,7 +121,7 @@ public class Token<T extends TokenIdentifier> implements 
Writable {
       cls = tokenKindMap.get(kind);
     }
     if (cls == null) {
-      LOG.warn("Cannot find class for token kind " + kind);
+      LOG.debug("Cannot find class for token kind " + kind);
       return null;
     }
     return cls;


---------------------------------------------------------------------
To unsubscribe, e-mail: common-commits-unsubscr...@hadoop.apache.org
For additional commands, e-mail: common-commits-h...@hadoop.apache.org

Reply via email to