YARN-5096. timelinereader has a lot of logging that's not useful. (Sangjin Lee via Varun Saxena)

This commit is contained in:
Varun Saxena 2016-05-18 19:33:14 +05:30 committed by Sangjin Lee
parent 8e09040381
commit bcdb382600
1 changed files with 3 additions and 1 deletions

View File

@ -194,7 +194,9 @@ public Object readResult(Result result, byte[] columnQualifierBytes)
.entrySet()) { .entrySet()) {
String columnName = null; String columnName = null;
if (columnPrefixBytes == null) { if (columnPrefixBytes == null) {
LOG.info("null prefix was specified; returning all columns"); if (LOG.isDebugEnabled()) {
LOG.debug("null prefix was specified; returning all columns");
}
// Decode the spaces we encoded in the column name. // Decode the spaces we encoded in the column name.
columnName = Separator.decode(entry.getKey(), Separator.SPACE); columnName = Separator.decode(entry.getKey(), Separator.SPACE);
} else { } else {