Added some log output to the pre-process-sources mojo (now you can see what 
files it's working on)


Project: http://git-wip-us.apache.org/repos/asf/flex-falcon/repo
Commit: http://git-wip-us.apache.org/repos/asf/flex-falcon/commit/69c141d4
Tree: http://git-wip-us.apache.org/repos/asf/flex-falcon/tree/69c141d4
Diff: http://git-wip-us.apache.org/repos/asf/flex-falcon/diff/69c141d4

Branch: refs/heads/feature/maven-migration
Commit: 69c141d41b76e24198d43d6d7530d3e372cca248
Parents: bb93aec
Author: Christofer Dutz <[email protected]>
Authored: Sat Mar 19 14:25:04 2016 +0100
Committer: Christofer Dutz <[email protected]>
Committed: Sat Mar 19 14:25:04 2016 +0100

----------------------------------------------------------------------
 .../flex/compiler/tools/patchfiles/PreProcessSourcesMojo.java       | 1 +
 1 file changed, 1 insertion(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-falcon/blob/69c141d4/compiler-build-tools/src/main/java/org/apache/flex/compiler/tools/patchfiles/PreProcessSourcesMojo.java
----------------------------------------------------------------------
diff --git 
a/compiler-build-tools/src/main/java/org/apache/flex/compiler/tools/patchfiles/PreProcessSourcesMojo.java
 
b/compiler-build-tools/src/main/java/org/apache/flex/compiler/tools/patchfiles/PreProcessSourcesMojo.java
index facd686..94028a6 100644
--- 
a/compiler-build-tools/src/main/java/org/apache/flex/compiler/tools/patchfiles/PreProcessSourcesMojo.java
+++ 
b/compiler-build-tools/src/main/java/org/apache/flex/compiler/tools/patchfiles/PreProcessSourcesMojo.java
@@ -66,6 +66,7 @@ public class PreProcessSourcesMojo
             Set<File> candidates = 
scan.getIncludedSources(downloadesSourceDirectory, null);
             for(File candidate : candidates) {
                 if(operations != null) {
+                    getLog().info("- Processing file: " + candidate.getPath());
                     for (Operation operation : operations) {
                         try {
                             operation.perform(candidate);

Reply via email to