Return-Path: Delivered-To: apmail-ant-dev-archive@www.apache.org Received: (qmail 38904 invoked from network); 3 Dec 2003 06:46:40 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (208.185.179.12) by minotaur-2.apache.org with SMTP; 3 Dec 2003 06:46:40 -0000 Received: (qmail 92088 invoked by uid 500); 3 Dec 2003 06:46:17 -0000 Delivered-To: apmail-ant-dev-archive@ant.apache.org Received: (qmail 91808 invoked by uid 500); 3 Dec 2003 06:46:15 -0000 Mailing-List: contact dev-help@ant.apache.org; run by ezmlm Precedence: bulk List-Unsubscribe: List-Subscribe: List-Help: List-Post: List-Id: "Ant Developers List" Reply-To: "Ant Developers List" Delivered-To: mailing list dev@ant.apache.org Received: (qmail 91794 invoked from network); 3 Dec 2003 06:46:15 -0000 Received: from unknown (HELO mail32.internethostingsolutions.com) (69.49.100.32) by daedalus.apache.org with SMTP; 3 Dec 2003 06:46:15 -0000 X-POP-User: rcoutts.envistatech.com Received: from RONDELL8200 ([68.147.223.29]) by mail32.internethostingsolutions.com (8.12.10/8.12.9) with ESMTP id hB36kDYW013335 for ; Wed, 3 Dec 2003 01:46:25 -0500 (EST) From: "Ron Coutts" To: Subject: TeeLogger class Date: Tue, 2 Dec 2003 23:46:12 -0700 Message-ID: <002c01c3b969$2b6d3db0$0301a8c0@envistatech.com> MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook, Build 10.0.4024 Importance: Normal X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1106 X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N One problem that I've had with Ant is that the logging facilities allow directing the output to either the console or a log file, but typically not both. This is fairly restrictive when you want to watch the progress of a build and have an log of build that is identical to what went by on the console. So in the spirit of the 'tee' command line utility I've developed a TeeLogger class that extends DefaultLogger and works a bit like MailLogger and a bit like XmlLogger. It can direct log output to two sinks simultaneously such as to the console and a file or to two files at the same time (not that this latter feature is worth much). Here are some examples of specifying TeeLogger on the Ant command line: ant -logger com.envistatech.tools.ant.TeeLogger Directs log output to console and log.txt by default. ant -logger com.envistatech.tools.ant.TeeLogger -DTeeLogger.file=mylog.txt Directs log output to console and mylog.txt. ant -logger com.envistatech.tools.ant.TeeLogger -DTeeLogger.file=mylog.txt -logfile mylog2.txt Directs log output to mylog.txt and mylog2.txt. I think this might be useful to others and I wouldn't mind contributing it. So my questions are, is this a worthy contribution and if so what's happens next? This would be my first code contribution and I'm not at all familiar with the process of contributing code. Ron --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscribe@ant.apache.org For additional commands, e-mail: dev-help@ant.apache.org