Skip to content
Snippets Groups Projects
Commit 936bc0bc authored by Marcelo Vanzin's avatar Marcelo Vanzin
Browse files

[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 <vanzin@cloudera.com>

Closes #9772 from vanzin/SPARK-11786.
parent 3e9e6380
No related branches found
No related tags found
No related merge requests found
...@@ -263,7 +263,7 @@ private[akka] class ErrorMonitor extends Actor with ActorLogReceive with Logging ...@@ -263,7 +263,7 @@ private[akka] class ErrorMonitor extends Actor with ActorLogReceive with Logging
} }
override def receiveWithLogging: Actor.Receive = { override def receiveWithLogging: Actor.Receive = {
case Error(cause: Throwable, _, _, message: String) => logError(message, cause) case Error(cause: Throwable, _, _, message: String) => logDebug(message, cause)
} }
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment