Fixed reports URL locations
This commit is contained in:
parent
f960ada544
commit
2b1ecfe4ee
1 changed files with 3 additions and 3 deletions
|
@ -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());
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue