Return-Path: Mailing-List: contact ant-dev-help@jakarta.apache.org; run by ezmlm Delivered-To: mailing list ant-dev@jakarta.apache.org Received: (qmail 80146 invoked from network); 20 Jan 2000 00:37:01 -0000 Received: from fw-us-hou-2.bmc.com (HELO tangelo.bmc.com) (198.207.223.251) by 63.211.145.10 with SMTP; 20 Jan 2000 00:37:01 -0000 Received: from ec01-hou.bmc.com (ec01-hou.bmc.com [172.17.0.150]) by tangelo.bmc.com (8.8.6 (PHNE_17135)/8.8.6) with ESMTP id SAA21492 for ; Wed, 19 Jan 2000 18:36:56 -0600 (CST) Received: by ec01-hou.bmc.com with Internet Mail Service (5.5.2650.21) id ; Wed, 19 Jan 2000 18:36:59 -0600 Message-ID: <626E9D01B882D311B49E00A0C9EBE2E2678D65@ES01-AUS.bmc.com> From: "Twiggs, Glenn" To: "'ant-dev@jakarta.apache.org'" Subject: [PATCH] copydir task - change message level for "Copydir Ignored: ..." messages Date: Wed, 19 Jan 2000 18:37:30 -0600 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2650.21) Content-Type: text/plain; charset="ISO-8859-1" I hope this request doesn't seem too trivial, but it has been bothering me... Does anyone else use the "ignore" attribute of the "copydir" task? Do you find the messages it produces annoying? I do :) The warning is printed even if the "-quiet" option is specified. If there is no dissention, I would like to have the following patch applied to set the logging level for the "ignore" messages to VERBOSE. Index: jakarta-ant/src/main/org/apache/tools/ant/taskdefs/Copydir.java =================================================================== RCS file: /home/cvspublic/jakarta-ant/src/main/org/apache/tools/ant/taskdefs/Copydir.j ava,v retrieving revision 1.1 diff -r1.1 Copydir.java 149c149 < project.log("Copydir Ignored: " + filename, Project.MSG_WARN); --- > project.log("Copydir Ignored: " + filename, Project.MSG_VERBOSE);