YARN-5096 addendum. Turned another logging statement to debug. Contributed by Sangjin Lee.

This commit is contained in:
Sangjin Lee 2016-05-19 15:40:15 -07:00
parent bcdb382600
commit 4a7011a45f
1 changed files with 3 additions and 1 deletions

View File

@ -258,7 +258,9 @@ public class ColumnHelper<T> {
String columnName = 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.
columnName = Separator.decode(columnKey, Separator.SPACE);
} else {