Skip to content

Commit

Permalink
change log level to warn
Browse files Browse the repository at this point in the history
  • Loading branch information
Kr0nox committed Feb 5, 2025
1 parent a9901d7 commit dd08bb8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cli/src/main/java/de/jplag/cli/JPlagRunner.java
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ public static JPlagResult runJPlag(JPlagOptions options) throws ExitException {
*/
public static void runInternalServer(File zipFile, int port) throws IOException {
if (!ReportViewer.hasCompiledViewer()) {
logger.info("The report viewer is not available. Check whether you compiled JPlag with the report viewer.");
logger.warn("The report viewer is not available. Check whether you compiled JPlag with the report viewer.");
return;
}
ReportViewer reportViewer = new ReportViewer(zipFile, port);
Expand Down

0 comments on commit dd08bb8

Please sign in to comment.