aboutsummaryrefslogtreecommitdiff
path: root/conf
diff options
context:
space:
mode:
authorPatrick Wendell <pwendell@gmail.com>2014-01-10 10:33:24 -0800
committerPatrick Wendell <pwendell@gmail.com>2014-01-10 10:33:24 -0800
commite9ed2d9e82e7119d7ce2e520358e32a9582047cf (patch)
treeb8d9a89f61e75cf48d8598835c842e1e75a4239e /conf
parent4b074fac054848ebd3397a3cce0a3e7871d3860c (diff)
downloadspark-e9ed2d9e82e7119d7ce2e520358e32a9582047cf.tar.gz
spark-e9ed2d9e82e7119d7ce2e520358e32a9582047cf.tar.bz2
spark-e9ed2d9e82e7119d7ce2e520358e32a9582047cf.zip
Make DEBUG-level logs consummable.
Removes two things that caused issues with the debug logs: (a) Internal polling in the DAGScheduler was polluting the logs. (b) The Scala REPL logs were really noisy.
Diffstat (limited to 'conf')
-rw-r--r--conf/log4j.properties.template4
1 files changed, 3 insertions, 1 deletions
diff --git a/conf/log4j.properties.template b/conf/log4j.properties.template
index 17d1978dde..f7f8535594 100644
--- a/conf/log4j.properties.template
+++ b/conf/log4j.properties.template
@@ -5,5 +5,7 @@ log4j.appender.console.target=System.err
log4j.appender.console.layout=org.apache.log4j.PatternLayout
log4j.appender.console.layout.ConversionPattern=%d{yy/MM/dd HH:mm:ss} %p %c{1}: %m%n
-# Ignore messages below warning level from Jetty, because it's a bit verbose
+# Settings to quiet third party logs that are too verbose
log4j.logger.org.eclipse.jetty=WARN
+log4j.logger.org.apache.spark.repl.SparkIMain$exprTyper=INFO
+log4j.logger.org.apache.spark.repl.SparkILoop$SparkILoopInterpreter=INFO