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:
Andrew Wang 2016-05-12 23:48:37 -07:00
parent 3c5c57af28
commit 3bfd29949f
1 changed files with 1 additions and 1 deletions

View File

@ -153,7 +153,7 @@ public byte[] getIdentifier() {
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;