Return-Path: X-Original-To: apmail-hive-commits-archive@www.apache.org Delivered-To: apmail-hive-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 86D1F17743 for ; Wed, 22 Jul 2015 20:48:07 +0000 (UTC) Received: (qmail 65270 invoked by uid 500); 22 Jul 2015 20:47:31 -0000 Delivered-To: apmail-hive-commits-archive@hive.apache.org Received: (qmail 65115 invoked by uid 500); 22 Jul 2015 20:47:31 -0000 Mailing-List: contact commits-help@hive.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: hive-dev@hive.apache.org Delivered-To: mailing list commits@hive.apache.org Received: (qmail 63226 invoked by uid 99); 22 Jul 2015 20:47:29 -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; Wed, 22 Jul 2015 20:47:29 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 92C57E35C9; Wed, 22 Jul 2015 20:47:29 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: gates@apache.org To: commits@hive.apache.org Date: Wed, 22 Jul 2015 20:47:49 -0000 Message-Id: In-Reply-To: <913cfa82da3b488db703032cf4a85d67@git.apache.org> References: <913cfa82da3b488db703032cf4a85d67@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [21/50] [abbrv] hive git commit: HIVE-11243: Changing log level in Utilities.getBaseWork(Nemon Lou, reviewed by Ferdinand Xu) HIVE-11243: Changing log level in Utilities.getBaseWork(Nemon Lou, reviewed by Ferdinand Xu) Project: http://git-wip-us.apache.org/repos/asf/hive/repo Commit: http://git-wip-us.apache.org/repos/asf/hive/commit/e2ee458d Tree: http://git-wip-us.apache.org/repos/asf/hive/tree/e2ee458d Diff: http://git-wip-us.apache.org/repos/asf/hive/diff/e2ee458d Branch: refs/heads/hbase-metastore Commit: e2ee458d8ef417785f1e9ebfca303a9d15fee8a8 Parents: e61a1a9 Author: Ferdinand Xu Authored: Thu Jul 16 04:06:05 2015 -0400 Committer: Ferdinand Xu Committed: Thu Jul 16 04:06:05 2015 -0400 ---------------------------------------------------------------------- ql/src/java/org/apache/hadoop/hive/ql/exec/Utilities.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/hive/blob/e2ee458d/ql/src/java/org/apache/hadoop/hive/ql/exec/Utilities.java ---------------------------------------------------------------------- diff --git a/ql/src/java/org/apache/hadoop/hive/ql/exec/Utilities.java b/ql/src/java/org/apache/hadoop/hive/ql/exec/Utilities.java index afecb1e..d8e463d 100644 --- a/ql/src/java/org/apache/hadoop/hive/ql/exec/Utilities.java +++ b/ql/src/java/org/apache/hadoop/hive/ql/exec/Utilities.java @@ -453,7 +453,7 @@ public final class Utilities { return gWork; } catch (FileNotFoundException fnf) { // happens. e.g.: no reduce work. - LOG.info("File not found: " + fnf.getMessage()); + LOG.debug("File not found: " + fnf.getMessage()); LOG.info("No plan file found: "+path); return null; } catch (Exception e) {