From 2f925796d81a4f67deb042f8e35184c68f044c86 Mon Sep 17 00:00:00 2001 From: Ravi Singhal Date: Thu, 1 Sep 2022 16:15:37 +0530 Subject: [PATCH] Print file path that could be copied --- .../src/main/java/com/oracle/weblogic/imagetool/util/Utils.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/imagetool/src/main/java/com/oracle/weblogic/imagetool/util/Utils.java b/imagetool/src/main/java/com/oracle/weblogic/imagetool/util/Utils.java index ac9f7ebb..67bb5f88 100644 --- a/imagetool/src/main/java/com/oracle/weblogic/imagetool/util/Utils.java +++ b/imagetool/src/main/java/com/oracle/weblogic/imagetool/util/Utils.java @@ -116,7 +116,7 @@ public static void copyLocalDirectory(Path sourcePath, Path destPath) throws IOE } else if (Files.isRegularFile(child)) { copyLocalFile(child, destPath.resolve(child.getFileName())); } else { - logger.info("IMG-0035", sourcePath.toString()); + logger.info("IMG-0035", child.toString()); } } }