Skip to content
Snippets Groups Projects
Commit 430c5314 authored by Mridul Muralidharan's avatar Mridul Muralidharan
Browse files

Remove debug statements

parent 3a89a76b
No related branches found
No related tags found
No related merge requests found
...@@ -74,7 +74,6 @@ object MasterFailureTest extends Logging { ...@@ -74,7 +74,6 @@ object MasterFailureTest extends Logging {
val operation = (st: DStream[String]) => { val operation = (st: DStream[String]) => {
val updateFunc = (values: Seq[Long], state: Option[Long]) => { val updateFunc = (values: Seq[Long], state: Option[Long]) => {
logInfo("UpdateFunc .. state = " + state.getOrElse(0L) + ", values = " + values)
Some(values.foldLeft(0L)(_ + _) + state.getOrElse(0L)) Some(values.foldLeft(0L)(_ + _) + state.getOrElse(0L))
} }
st.flatMap(_.split(" ")) st.flatMap(_.split(" "))
......
...@@ -22,12 +22,10 @@ class FailureSuite extends FunSuite with BeforeAndAfter with Logging { ...@@ -22,12 +22,10 @@ class FailureSuite extends FunSuite with BeforeAndAfter with Logging {
val batchDuration = Milliseconds(1000) val batchDuration = Milliseconds(1000)
before { before {
logInfo("BEFORE ...")
FileUtils.deleteDirectory(new File(directory)) FileUtils.deleteDirectory(new File(directory))
} }
after { after {
logInfo("AFTER ...")
FileUtils.deleteDirectory(new File(directory)) FileUtils.deleteDirectory(new File(directory))
} }
......
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