Skip to content
Snippets Groups Projects
Commit 28e3b0e7 authored by Benedikt Wetzel's avatar Benedikt Wetzel
Browse files

Merge branch 'theodolite-kotlin' of...

Merge branch 'theodolite-kotlin' of git.se.informatik.uni-kiel.de:she/theodolite into 221-add-delay-before-create-wl
parents dff07e66 fc153c62
No related branches found
No related tags found
No related merge requests found
This commit is part of merge request !135. Comments created here will be created in the context of that merge request.
...@@ -24,9 +24,9 @@ class CsvExporter { ...@@ -24,9 +24,9 @@ class CsvExporter {
val csvOutputFile = File("$name.csv") val csvOutputFile = File("$name.csv")
PrintWriter(csvOutputFile).use { pw -> PrintWriter(csvOutputFile).use { pw ->
pw.println(listOf("group", "timestamp", "value").joinToString()) pw.println(listOf("group", "timestamp", "value").joinToString(separator=","))
responseArray.forEach { responseArray.forEach {
pw.println(it.joinToString()) pw.println(it.joinToString(separator=","))
} }
} }
logger.info { "Wrote CSV file: $name to ${csvOutputFile.absolutePath}." } logger.info { "Wrote CSV file: $name to ${csvOutputFile.absolutePath}." }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment