Re: How to redirect javac task errors to a separate file

2004-02-12 Thread Matt Benson
--- Peter Reilly <[EMAIL PROTECTED]> wrote: > FYI > ant outputs System.out at "INFO" level and > System.err at "WARN" level. ...hence my comment below about temporarily changing System.err to an ERROR level logstream (as opposed to WARN). Thanks Peter and Conor for explicitly stating what I forgo

Re: How to redirect javac task errors to a separate file

2004-02-12 Thread Conor MacNeill
On Thu, 12 Feb 2004 09:09:18 -0500, Digambar, Shaligram (Consultant) <[EMAIL PROTECTED]> wrote: Had ANT logged system.err at different level than system.out it would have been easier to redirect the error output to a separate file and generate better build reports. If its tricky as you've menti

Re: How to redirect javac task errors to a separate file

2004-02-12 Thread Peter Reilly
FYI ant outputs System.out at "INFO" level and System.err at "WARN" level. This can be shown as follows: redirect.xml: import sys sys.stdout.write("stdout\n") sys.stderr.write("stderr\n") ant -f redirect.xml -logger org.apache.tools.ant.XmlLogger However to support

RE: How to redirect javac task errors to a separate file

2004-02-12 Thread Jan . Materne
> -Original Message- > From: Digambar, Shaligram (Consultant) > [mailto:[EMAIL PROTECTED] > Sent: Thursday, February 12, 2004 3:09 PM > To: 'Ant Users List' > Subject: RE: How to redirect javac task errors to a separate file > > > Had ANT logg