You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hive.apache.org by dm...@apache.org on 2019/11/01 14:17:23 UTC

[hive] branch master updated: HIVE-21275: Lower Logging Level in Operator Class for Group Tracing (David Mollitor, reviewed by Peter Vary)

This is an automated email from the ASF dual-hosted git repository.

dmollitor pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/hive.git


The following commit(s) were added to refs/heads/master by this push:
     new 57586ba  HIVE-21275: Lower Logging Level in Operator Class for Group Tracing (David Mollitor, reviewed by Peter Vary)
57586ba is described below

commit 57586ba4858f957103e77ad20364a22f99ad860f
Author: David Mollitor <dm...@apache.org>
AuthorDate: Fri Nov 1 10:16:45 2019 -0400

    HIVE-21275: Lower Logging Level in Operator Class for Group Tracing (David Mollitor, reviewed by Peter Vary)
---
 ql/src/java/org/apache/hadoop/hive/ql/exec/Operator.java | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/ql/src/java/org/apache/hadoop/hive/ql/exec/Operator.java b/ql/src/java/org/apache/hadoop/hive/ql/exec/Operator.java
index 5661c37..753f25b 100644
--- a/ql/src/java/org/apache/hadoop/hive/ql/exec/Operator.java
+++ b/ql/src/java/org/apache/hadoop/hive/ql/exec/Operator.java
@@ -574,7 +574,7 @@ public abstract class Operator<T extends OperatorDesc> implements Serializable,C
   public abstract void process(Object row, int tag) throws HiveException;
 
   protected final void defaultStartGroup() throws HiveException {
-    LOG.debug("Starting group");
+    LOG.trace("Starting group");
 
     if (CollectionUtils.isEmpty(childOperators))  {
       LOG.trace("No children operators; start group done");
@@ -589,7 +589,7 @@ public abstract class Operator<T extends OperatorDesc> implements Serializable,C
   }
 
   protected final void defaultEndGroup() throws HiveException {
-    LOG.debug("Ending group");
+    LOG.trace("Ending group");
 
     if (CollectionUtils.isEmpty(childOperators)) {
       LOG.trace("No children operators; end group done");