HADOOP-11180. Change log message "token.Token: Cannot find class for token kind kms-dt" to debug. Contributed by Yi Liu.
This commit is contained in:
parent
3c5c57af28
commit
3bfd29949f
|
@ -153,7 +153,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;
|
||||
|
|
Loading…
Reference in New Issue