Skip to content

Commit

Permalink
print location of report in Reporter
Browse files Browse the repository at this point in the history
  • Loading branch information
MariusAlbrecht committed Jun 18, 2024
1 parent 1fdcaca commit 59eae97
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ interface Reporter {
* @param path the path to write the report to. If unspecified, the default path is used
*/
fun toFile(report: String, path: Path = getDefaultPath()) {
print("writing report to ${path.toAbsolutePath()}")
println("writing report to ${path.toAbsolutePath()}") // TODO: actual logging
path.parent.createDirectories() // create parent directories if they don't exist
path.writeText(report)
}
Expand Down

0 comments on commit 59eae97

Please sign in to comment.