Skip to content

Commit

Permalink
Fixed reports URL locations
Browse files Browse the repository at this point in the history
  • Loading branch information
ethauvin committed May 11, 2024
1 parent f960ada commit 2b1ecfe
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/main/java/rife/bld/extension/JacocoReportOperation.java
Original file line number Diff line number Diff line change
Expand Up @@ -388,9 +388,9 @@ private void writeReports(IBundleCoverage bundle, ExecFileLoader loader)
visitor.visitBundle(bundle, sourceLocator());
visitor.visitEnd();
if (LOGGER.isLoggable(Level.INFO) && !quiet) {
LOGGER.log(Level.INFO, "XML Report: file://{0}", xml);
LOGGER.log(Level.INFO, "CSV Report: file://{0}", csv);
LOGGER.log(Level.INFO, "HTML Report: file://{0}/index.html", html);
LOGGER.log(Level.INFO, "XML Report: file://{0}", xml.toURI().getPath());
LOGGER.log(Level.INFO, "CSV Report: file://{0}", csv.toURI().getPath());
LOGGER.log(Level.INFO, "HTML Report: file://{0}index.html", html.toURI().getPath());
}
}

Expand Down

0 comments on commit 2b1ecfe

Please sign in to comment.