From 598e18997aca23e441c8302888e7423fac146da8 Mon Sep 17 00:00:00 2001 From: Stefan Bodewig Date: Mon, 17 Aug 2009 08:43:05 +0000 Subject: [PATCH] log something when expand doesn't extract a file that doesn#t match the patterns git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@804902 13f79535-47bb-0310-9956-ffa450edef68 --- src/main/org/apache/tools/ant/taskdefs/Expand.java | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/main/org/apache/tools/ant/taskdefs/Expand.java b/src/main/org/apache/tools/ant/taskdefs/Expand.java index a666ad63f..a48281d05 100644 --- a/src/main/org/apache/tools/ant/taskdefs/Expand.java +++ b/src/main/org/apache/tools/ant/taskdefs/Expand.java @@ -296,6 +296,9 @@ public class Expand extends Task { if (!included) { //Do not process this file + log("skipping " + entryName + + " as it is excluded or not included.", + Project.MSG_VERBOSE); return; } }