File tree Expand file tree Collapse file tree 2 files changed +1
-4
lines changed
main/scala/org/apache/spark/util
test/scala/org/apache/spark Expand file tree Collapse file tree 2 files changed +1
-4
lines changed Original file line number Diff line number Diff line change @@ -871,7 +871,7 @@ private[spark] object Utils extends Logging {
871871 val exitCode = process.waitFor()
872872 stdoutThread.join() // Wait for it to finish reading output
873873 if (exitCode != 0 ) {
874- logError(s " Process $command exited with code $exitCode: ${output.toString }" )
874+ logError(s " Process $command exited with code $exitCode: ${output}" )
875875 throw new SparkException (" Process " + command + " exited with code " + exitCode)
876876 }
877877 output.toString
Original file line number Diff line number Diff line change 1818package org .apache .spark
1919
2020import java .io .File
21- import java .util .Properties
22-
23- import org .apache .log4j .{PropertyConfigurator , Logger , Level }
2421
2522import org .scalatest .FunSuite
2623import org .scalatest .concurrent .Timeouts
You can’t perform that action at this time.
0 commit comments