Skip to content

Commit 0bc52d9

Browse files
committed
U log output typo
1 parent 06943eb commit 0bc52d9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/io/github/fvarrui/javapackager/utils/FileUtils.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ public static File mkdir(File parent, String name) {
4545
}
4646

4747
public static void copyFileToFile(File source, File dest) throws Exception {
48-
Logger.info("Copying file [" + source + "] to folder [" + dest + "]");
48+
Logger.info("Copying file [" + source + "] to file [" + dest + "]");
4949
try {
5050
copyFile(source, dest);
5151
} catch (IOException e) {

0 commit comments

Comments
 (0)