YARN-5096. timelinereader has a lot of logging that's not useful. (Sangjin Lee via Varun Saxena)
This commit is contained in:
parent
8e09040381
commit
bcdb382600
|
@ -194,7 +194,9 @@ public class ColumnHelper<T> {
|
||||||
.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 {
|
||||||
|
|
Loading…
Reference in New Issue