File tree Expand file tree Collapse file tree 2 files changed +1
-2
lines changed Expand file tree Collapse file tree 2 files changed +1
-2
lines changed Original file line number Diff line number Diff line change @@ -24,7 +24,6 @@ object Invoker {
24
24
// Each thread writes to a separate measurement file, to reduce contention
25
25
// and because file appends via FileWriter are not atomic on Windows.
26
26
val file = IOUtils .measurementFile(dataDir)
27
- println(" Writing to " + file)
28
27
val writer = new FileWriter (file, true )
29
28
writer.append(id.toString + ';' )
30
29
writer.close()
Original file line number Diff line number Diff line change @@ -113,7 +113,7 @@ class ScoverageInstrumentationComponent(val global: Global)
113
113
114
114
IOUtils .serialize(coverage, IOUtils .coverageFile(options.dataDir))
115
115
println(s " [scoverage]: Written instrumentation file [ ${IOUtils .coverageFile(options.dataDir)}] " )
116
- println(s " [scoverage]: Will write measurement data to [ ${options.dataDir}] " )
116
+ println(s " [scoverage]: Writing measurements data to [ ${options.dataDir}] " )
117
117
}
118
118
}
119
119
You can’t perform that action at this time.
0 commit comments