Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id 05030200B5F for ; Fri, 8 Jul 2016 19:52:07 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id 02894160A78; Fri, 8 Jul 2016 17:52:07 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 3E5DA160A81 for ; Fri, 8 Jul 2016 19:52:06 +0200 (CEST) Received: (qmail 92211 invoked by uid 500); 8 Jul 2016 17:51:58 -0000 Mailing-List: contact common-commits-help@hadoop.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Delivered-To: mailing list common-commits@hadoop.apache.org Received: (qmail 90197 invoked by uid 99); 8 Jul 2016 17:51:56 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 08 Jul 2016 17:51:56 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 74CD7EAD9A; Fri, 8 Jul 2016 17:51:56 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: sjlee@apache.org To: common-commits@hadoop.apache.org Date: Fri, 08 Jul 2016 17:52:16 -0000 Message-Id: <81fc16ef43694ec1b2f848ef834eb633@git.apache.org> In-Reply-To: <3a90c23a7b59462ba941f17f1e4fcdd4@git.apache.org> References: <3a90c23a7b59462ba941f17f1e4fcdd4@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [22/50] [abbrv] hadoop git commit: YARN-5096. timelinereader has a lot of logging that's not useful. (Sangjin Lee via Varun Saxena) archived-at: Fri, 08 Jul 2016 17:52:07 -0000 YARN-5096. timelinereader has a lot of logging that's not useful. (Sangjin Lee via Varun Saxena) Project: http://git-wip-us.apache.org/repos/asf/hadoop/repo Commit: http://git-wip-us.apache.org/repos/asf/hadoop/commit/d5f1a30f Tree: http://git-wip-us.apache.org/repos/asf/hadoop/tree/d5f1a30f Diff: http://git-wip-us.apache.org/repos/asf/hadoop/diff/d5f1a30f Branch: refs/heads/YARN-2928 Commit: d5f1a30f53a0798f04a6e995fff880175262bb0b Parents: fcd59e7 Author: Varun Saxena Authored: Wed May 18 19:33:14 2016 +0530 Committer: Sangjin Lee Committed: Fri Jul 8 10:19:03 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/d5f1a30f/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 4adb413..dff677b 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 @@ -194,7 +194,9 @@ public class ColumnHelper { .entrySet()) { 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(entry.getKey(), Separator.SPACE); } else { --------------------------------------------------------------------- To unsubscribe, e-mail: common-commits-unsubscribe@hadoop.apache.org For additional commands, e-mail: common-commits-help@hadoop.apache.org