You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flex.apache.org by cd...@apache.org on 2016/03/19 14:25:10 UTC

[2/2] git commit: [flex-falcon] [refs/heads/feature/maven-migration] - Added some log output to the pre-process-sources mojo (now you can see what files it's working on)

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 <ch...@codecentric.de>
Authored: Sat Mar 19 14:25:04 2016 +0100
Committer: Christofer Dutz <ch...@codecentric.de>
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);