From fa1b7922b317e1e95d22ad68c74253df28995692 Mon Sep 17 00:00:00 2001 From: wisberg Date: Tue, 4 Mar 2003 04:34:29 +0000 Subject: [PATCH] info messages wrt inc-compile staging (will not be emitted even in verbose mode until iterator (the client) is updated) --- .../src/org/aspectj/testing/harness/bridge/IncCompilerRun.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/testing/src/org/aspectj/testing/harness/bridge/IncCompilerRun.java b/testing/src/org/aspectj/testing/harness/bridge/IncCompilerRun.java index 6e8d626e7..d917ee5fb 100644 --- a/testing/src/org/aspectj/testing/harness/bridge/IncCompilerRun.java +++ b/testing/src/org/aspectj/testing/harness/bridge/IncCompilerRun.java @@ -113,11 +113,13 @@ public class IncCompilerRun implements IAjcRun { String path = file.getAbsolutePath(); if (!path.endsWith(clip)) { holder.numCopies++; + validator.info("copying file: " + path); } else { doCopy = false; path = path.substring(0, path.length()-clip.length()) + toSuffix; File toDelete = new File(path); if (toDelete.delete()) { + validator.info("deleted file: " + path); holder.numDeletes++; } else { validator.fail("unable to delete file: " + path); -- 2.39.5