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 {
871
871
val exitCode = process.waitFor()
872
872
stdoutThread.join() // Wait for it to finish reading output
873
873
if (exitCode != 0 ) {
874
- logError(s " Process $command exited with code $exitCode: ${output.toString }" )
874
+ logError(s " Process $command exited with code $exitCode: ${output}" )
875
875
throw new SparkException (" Process " + command + " exited with code " + exitCode)
876
876
}
877
877
output.toString
Original file line number Diff line number Diff line change 18
18
package org .apache .spark
19
19
20
20
import java .io .File
21
- import java .util .Properties
22
-
23
- import org .apache .log4j .{PropertyConfigurator , Logger , Level }
24
21
25
22
import org .scalatest .FunSuite
26
23
import org .scalatest .concurrent .Timeouts
You can’t perform that action at this time.
0 commit comments