YARN-5096 addendum. Turned another logging statement to debug. Contributed by Sangjin Lee.
This commit is contained in:
parent
bcdb382600
commit
4a7011a45f
|
@ -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 {
|
||||
|
|
Loading…
Reference in New Issue