diff --git a/modules/wrapper/src/main/java/com/beust/kobalt/wrapper/Main.java b/modules/wrapper/src/main/java/com/beust/kobalt/wrapper/Main.java index d8b89292..c5128d12 100644 --- a/modules/wrapper/src/main/java/com/beust/kobalt/wrapper/Main.java +++ b/modules/wrapper/src/main/java/com/beust/kobalt/wrapper/Main.java @@ -171,13 +171,13 @@ public class Main { } if (Files.exists(to)) { - log(1, to + " already exists, not overwriting it"); + log(2, to + " already exists, not overwriting it"); continue; } else { Path from = Paths.get(zipOutputDir, file); try { if (isWindows() && to.toFile().exists()) { - log(1, "Windows detected, not overwriting " + to); + log(2, "Windows detected, not overwriting " + to); } else { Files.copy(from, to, StandardCopyOption.REPLACE_EXISTING); }