Skip to content

Commit

Permalink
Removing the print statement for Raw Coverage Data since that seems t…
Browse files Browse the repository at this point in the history
…o interupt with the coverage output path
  • Loading branch information
Rd4dev committed Jul 19, 2024
1 parent fe42482 commit 67c0036
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ class BazelClient(private val rootDirectory: File, private val commandExecutor:
val match = regex.find(line)
val extractedPath = match?.value?.substringAfterLast(",")?.trim()
if (extractedPath != null) {
println("Raw Coverage Data: $extractedPath")
// println("Raw Coverage Data: $extractedPath")
return extractedPath
}
}
Expand Down

0 comments on commit 67c0036

Please sign in to comment.