1
0
Fork 0
mirror of https://github.com/ethauvin/kobalt.git synced 2025-04-26 08:27:12 -07:00

Better log.

This commit is contained in:
Cedric Beust 2016-04-25 21:10:43 -08:00
parent af889c5c77
commit 91c15e1bf1

View file

@ -238,7 +238,7 @@ public class Main {
if (isWindows() && to.toFile().exists()) { if (isWindows() && to.toFile().exists()) {
log(2, " Windows detected, not overwriting " + to); log(2, " Windows detected, not overwriting " + to);
} else { } else {
log(2, " Writing " + to); log(2, " Copying " + from + " to " + to);
Files.copy(from, to, StandardCopyOption.REPLACE_EXISTING); Files.copy(from, to, StandardCopyOption.REPLACE_EXISTING);
} }
} catch (IOException ex) { } catch (IOException ex) {