You are viewing a plain text version of this content. The canonical link for it is here.
Posted to common-commits@hadoop.apache.org by vr...@apache.org on 2016/06/21 23:49:11 UTC

[25/50] [abbrv] hadoop git commit: YARN-5096 addendum. Turned another logging statement to debug. Contributed by Sangjin Lee.

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


Project: http://git-wip-us.apache.org/repos/asf/hadoop/repo
Commit: http://git-wip-us.apache.org/repos/asf/hadoop/commit/1c0d74d9
Tree: http://git-wip-us.apache.org/repos/asf/hadoop/tree/1c0d74d9
Diff: http://git-wip-us.apache.org/repos/asf/hadoop/diff/1c0d74d9

Branch: refs/heads/YARN-2928
Commit: 1c0d74d9b95685e6b07733a0361755f93ad1396c
Parents: 3a11e5c
Author: Sangjin Lee <sj...@apache.org>
Authored: Thu May 19 15:40:15 2016 -0700
Committer: Vrushali <vr...@twitter.com>
Committed: Sun Jun 19 00:20:09 2016 -0700

----------------------------------------------------------------------
 .../yarn/server/timelineservice/storage/common/ColumnHelper.java | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/hadoop/blob/1c0d74d9/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-timelineservice/src/main/java/org/apache/hadoop/yarn/server/timelineservice/storage/common/ColumnHelper.java
----------------------------------------------------------------------
diff --git a/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-timelineservice/src/main/java/org/apache/hadoop/yarn/server/timelineservice/storage/common/ColumnHelper.java b/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-timelineservice/src/main/java/org/apache/hadoop/yarn/server/timelineservice/storage/common/ColumnHelper.java
index dff677b..759bf27 100644
--- a/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-timelineservice/src/main/java/org/apache/hadoop/yarn/server/timelineservice/storage/common/ColumnHelper.java
+++ b/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-timelineservice/src/main/java/org/apache/hadoop/yarn/server/timelineservice/storage/common/ColumnHelper.java
@@ -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 {


---------------------------------------------------------------------
To unsubscribe, e-mail: common-commits-unsubscribe@hadoop.apache.org
For additional commands, e-mail: common-commits-help@hadoop.apache.org