You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hive.apache.org by pr...@apache.org on 2016/03/08 19:29:50 UTC

hive git commit: HIVE-13227: LLAP: Change daemon initialization logs from INFO to WARN (Prasanth Jayachandran reviewed by Gopal V)

Repository: hive
Updated Branches:
  refs/heads/master cc8893e48 -> 41e82012e


HIVE-13227: LLAP: Change daemon initialization logs from INFO to WARN (Prasanth Jayachandran reviewed by Gopal V)


Project: http://git-wip-us.apache.org/repos/asf/hive/repo
Commit: http://git-wip-us.apache.org/repos/asf/hive/commit/41e82012
Tree: http://git-wip-us.apache.org/repos/asf/hive/tree/41e82012
Diff: http://git-wip-us.apache.org/repos/asf/hive/diff/41e82012

Branch: refs/heads/master
Commit: 41e82012e17eb94a7c4a7b1819590380be882bba
Parents: cc8893e
Author: Prasanth Jayachandran <j....@gmail.com>
Authored: Tue Mar 8 12:29:39 2016 -0600
Committer: Prasanth Jayachandran <j....@gmail.com>
Committed: Tue Mar 8 12:29:39 2016 -0600

----------------------------------------------------------------------
 .../org/apache/hadoop/hive/llap/daemon/impl/LlapDaemon.java    | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/hive/blob/41e82012/llap-server/src/java/org/apache/hadoop/hive/llap/daemon/impl/LlapDaemon.java
----------------------------------------------------------------------
diff --git a/llap-server/src/java/org/apache/hadoop/hive/llap/daemon/impl/LlapDaemon.java b/llap-server/src/java/org/apache/hadoop/hive/llap/daemon/impl/LlapDaemon.java
index 8394004..165830c 100644
--- a/llap-server/src/java/org/apache/hadoop/hive/llap/daemon/impl/LlapDaemon.java
+++ b/llap-server/src/java/org/apache/hadoop/hive/llap/daemon/impl/LlapDaemon.java
@@ -134,7 +134,7 @@ public class LlapDaemon extends CompositeService implements ContainerRunner, Lla
         daemonConf, ConfVars.LLAP_DAEMON_TASK_SCHEDULER_WAIT_QUEUE_SIZE);
     boolean enablePreemption = HiveConf.getBoolVar(
         daemonConf, ConfVars.LLAP_DAEMON_TASK_SCHEDULER_ENABLE_PREEMPTION);
-    LOG.info("Attempting to start LlapDaemonConf with the following configuration: " +
+    LOG.warn("Attempting to start LlapDaemonConf with the following configuration: " +
         "numExecutors=" + numExecutors +
         ", rpcListenerPort=" + srvPort +
         ", mngListenerPort=" + mngPort +
@@ -224,7 +224,7 @@ public class LlapDaemon extends CompositeService implements ContainerRunner, Lla
     if (llap_l4j2 != null) {
       Configurator.initialize("LlapDaemonLog4j2", llap_l4j2.toString());
       long end = System.currentTimeMillis();
-      LOG.info("LLAP daemon logging initialized from {} in {} ms", llap_l4j2, (end - start));
+      LOG.warn("LLAP daemon logging initialized from {} in {} ms", llap_l4j2, (end - start));
     } else {
       throw new RuntimeException("Log initialization failed." +
           " Unable to locate " + LOG4j2_PROPERTIES_FILE + " file in classpath");
@@ -265,7 +265,7 @@ public class LlapDaemon extends CompositeService implements ContainerRunner, Lla
         "$$$$$$$$\\ $$$$$$$$\\ $$ |  $$ |$$ |\n" +
         "\\________|\\________|\\__|  \\__|\\__|\n" +
         "\n";
-    LOG.info("\n\n" + asciiArt);
+    LOG.warn("\n\n" + asciiArt);
   }
 
   @Override