HADOOP-11180. Change log message "token.Token: Cannot find class for token kind kms-dt" to debug. Contributed by Yi Liu.
(cherry picked from commit3bfd29949f
) (cherry picked from commitd6f6b99c83
)
This commit is contained in:
parent
8d74a58042
commit
5da54eb3d4
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue