You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kylin.apache.org by li...@apache.org on 2017/12/31 13:19:26 UTC

[09/50] [abbrv] kylin git commit: minor, print the exception in log

minor, print the exception in log


Project: http://git-wip-us.apache.org/repos/asf/kylin/repo
Commit: http://git-wip-us.apache.org/repos/asf/kylin/commit/15dd1c12
Tree: http://git-wip-us.apache.org/repos/asf/kylin/tree/15dd1c12
Diff: http://git-wip-us.apache.org/repos/asf/kylin/diff/15dd1c12

Branch: refs/heads/master
Commit: 15dd1c12bc9b64981e14a6dbe2a28cd987acb588
Parents: f2f487f
Author: Cheng Wang <ch...@kyligence.io>
Authored: Mon Dec 11 16:47:12 2017 +0800
Committer: Li Yang <li...@apache.org>
Committed: Mon Dec 11 02:56:17 2017 -0600

----------------------------------------------------------------------
 .../org/apache/kylin/job/impl/threadpool/DefaultScheduler.java     | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/kylin/blob/15dd1c12/core-job/src/main/java/org/apache/kylin/job/impl/threadpool/DefaultScheduler.java
----------------------------------------------------------------------
diff --git a/core-job/src/main/java/org/apache/kylin/job/impl/threadpool/DefaultScheduler.java b/core-job/src/main/java/org/apache/kylin/job/impl/threadpool/DefaultScheduler.java
index 8f4ee37..b87a839 100644
--- a/core-job/src/main/java/org/apache/kylin/job/impl/threadpool/DefaultScheduler.java
+++ b/core-job/src/main/java/org/apache/kylin/job/impl/threadpool/DefaultScheduler.java
@@ -126,7 +126,7 @@ public class DefaultScheduler implements Scheduler<AbstractExecutable>, Connecti
                         + nStopped + " stopped, " + nReady + " ready, " + nSUCCEED + " already succeed, " + nError
                         + " error, " + nDiscarded + " discarded, " + nOthers + " others");
             } catch (Exception e) {
-                logger.warn("Job Fetcher caught a exception " + e);
+                logger.warn("Job Fetcher caught a exception ", e);
             }
         }
     }