Skip to content

Commit 33b6887

Browse files
authored
Remove unnecessary logging (#232)
It was unfortunately left behind after last round of debugging... Pull request: #232
1 parent a2f9580 commit 33b6887

File tree

2 files changed

+0
-3
lines changed

2 files changed

+0
-3
lines changed

os/src-jvm/ProcessOps.scala

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -311,7 +311,6 @@ case class ProcGroup private[os] (commands: Seq[proc]) {
311311
runnable.run()
312312
} catch {
313313
case e: IOException =>
314-
println(s"Broken pipe in process $index")
315314
queue.put(index)
316315
}
317316
}

os/src-jvm/SubProcess.scala

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -241,13 +241,11 @@ class ProcessPipeline(
241241
var pipelineRunning = true
242242
while (pipelineRunning) {
243243
val brokenPipeIndex = queue.take()
244-
println("Killing " + brokenPipeIndex)
245244
if (brokenPipeIndex == processes.length) { // Special case signaling finished pipeline
246245
pipelineRunning = false
247246
} else {
248247
processes(brokenPipeIndex).destroyForcibly()
249248
}
250-
println("Processes status: " + processes.map(_.isAlive()))
251249
}
252250
new Thread(
253251
new Runnable {

0 commit comments

Comments
 (0)