Re: how do you turn off info logging when running in local mode

2014-12-04 Thread Akhil Das
Yes, there is away. Just add the following piece of code before creating the SparkContext. import org.apache.log4j.Logger import org.apache.log4j.Level Logger.getLogger("org").setLevel(Level.OFF) Logger.getLogger("akka").setLevel(Level.OFF) Thanks Best Regards On Fri, Dec 5, 2014 at 12:48 AM,

how do you turn off info logging when running in local mode

2014-12-04 Thread Ron Ayoub
I have not yet gotten to the point of running standalone. In my case I'm still working on the initial product and I'm running directly in Eclipse and I've compiled using the Spark maven project since the downloadable spark binaries require Hadoop. With that said, I'm running fine and I have thin