Return-Path: X-Original-To: apmail-spark-commits-archive@minotaur.apache.org Delivered-To: apmail-spark-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 72A6018BD1 for ; Tue, 17 Nov 2015 22:23:36 +0000 (UTC) Received: (qmail 35916 invoked by uid 500); 17 Nov 2015 22:23:36 -0000 Delivered-To: apmail-spark-commits-archive@spark.apache.org Received: (qmail 35890 invoked by uid 500); 17 Nov 2015 22:23:36 -0000 Mailing-List: contact commits-help@spark.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Delivered-To: mailing list commits@spark.apache.org Received: (qmail 35877 invoked by uid 99); 17 Nov 2015 22:23:36 -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; Tue, 17 Nov 2015 22:23:36 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 1D396DFF7E; Tue, 17 Nov 2015 22:23:36 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: vanzin@apache.org To: commits@spark.apache.org Message-Id: <89d4fc61074b4aa2a29ece7c601aee35@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: spark git commit: [SPARK-11786][CORE] Tone down messages from akka error monitor. Date: Tue, 17 Nov 2015 22:23:36 +0000 (UTC) Repository: spark Updated Branches: refs/heads/master 3e9e63802 -> 936bc0bcb [SPARK-11786][CORE] Tone down messages from akka error monitor. There events happen normally during the app's lifecycle, so printing out ERROR logs all the time is misleading, and can actually affect usability of interactive shells. Author: Marcelo Vanzin Closes #9772 from vanzin/SPARK-11786. Project: http://git-wip-us.apache.org/repos/asf/spark/repo Commit: http://git-wip-us.apache.org/repos/asf/spark/commit/936bc0bc Tree: http://git-wip-us.apache.org/repos/asf/spark/tree/936bc0bc Diff: http://git-wip-us.apache.org/repos/asf/spark/diff/936bc0bc Branch: refs/heads/master Commit: 936bc0bcbf957fa1d7cb5cfe88d628c830df5981 Parents: 3e9e638 Author: Marcelo Vanzin Authored: Tue Nov 17 14:23:28 2015 -0800 Committer: Marcelo Vanzin Committed: Tue Nov 17 14:23:28 2015 -0800 ---------------------------------------------------------------------- core/src/main/scala/org/apache/spark/rpc/akka/AkkaRpcEnv.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/spark/blob/936bc0bc/core/src/main/scala/org/apache/spark/rpc/akka/AkkaRpcEnv.scala ---------------------------------------------------------------------- diff --git a/core/src/main/scala/org/apache/spark/rpc/akka/AkkaRpcEnv.scala b/core/src/main/scala/org/apache/spark/rpc/akka/AkkaRpcEnv.scala index 3fad595..059a7e1 100644 --- a/core/src/main/scala/org/apache/spark/rpc/akka/AkkaRpcEnv.scala +++ b/core/src/main/scala/org/apache/spark/rpc/akka/AkkaRpcEnv.scala @@ -263,7 +263,7 @@ private[akka] class ErrorMonitor extends Actor with ActorLogReceive with Logging } override def receiveWithLogging: Actor.Receive = { - case Error(cause: Throwable, _, _, message: String) => logError(message, cause) + case Error(cause: Throwable, _, _, message: String) => logDebug(message, cause) } } --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscribe@spark.apache.org For additional commands, e-mail: commits-help@spark.apache.org