Fixed reports URL locations

This commit is contained in:
Erik C. Thauvin 2024-05-11 15:30:35 -07:00
parent f960ada544
commit 2b1ecfe4ee
Signed by: erik
GPG key ID: 776702A6A2DA330E

View file

@ -388,9 +388,9 @@ public class JacocoReportOperation extends AbstractOperation<JacocoReportOperati
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());
}
}