Skip to content

Commit fa46e82

Browse files
Print file path that could be copied (#388)
1 parent f89cea1 commit fa46e82

File tree

1 file changed

+1
-1
lines changed
  • imagetool/src/main/java/com/oracle/weblogic/imagetool/util

1 file changed

+1
-1
lines changed

imagetool/src/main/java/com/oracle/weblogic/imagetool/util/Utils.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ public static void copyLocalDirectory(Path sourcePath, Path destPath) throws IOE
116116
} else if (Files.isRegularFile(child)) {
117117
copyLocalFile(child, destPath.resolve(child.getFileName()));
118118
} else {
119-
logger.info("IMG-0035", sourcePath.toString());
119+
logger.info("IMG-0035", child.toString());
120120
}
121121
}
122122
}

0 commit comments

Comments
 (0)