From 20167caae915fdc8139be67e6dc814f8b68fa760 Mon Sep 17 00:00:00 2001 From: Cedric Beust Date: Fri, 11 Dec 2015 21:17:22 +0400 Subject: [PATCH] Less verbose. --- .../wrapper/src/main/java/com/beust/kobalt/wrapper/Main.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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); }