Re: [Nant-users] Bug when using XmlLogger and build exceptions

2004-02-28 Thread Mike Roberts
Hi Gert, I'd think it would be best to group all types of failures under 1 'failure' tag. I see what you're saying about internal and build errors having different structures though, maybe we could actually put your second idea into a failure tag, e.g. ... or ... On

Re: [Nant-users] Bug when using XmlLogger and build exceptions

2004-02-26 Thread Mike Roberts
Hi Gert - thanks for the reply. Regarding the xml structure, there's 2 things on my mind - Try not to change the existing structure too much unless we have to - This problem with exceptions is actually about failures generally (I've tried using just a with a message and the same behaviour manif

Re: [Nant-users] Bug when using XmlLogger and build exceptions

2004-02-26 Thread Gert Driesen
- Original Message - From: "Mike Roberts" <[EMAIL PROTECTED]> To: "Gert Driesen" <[EMAIL PROTECTED]> > The thing I get from this is that what we are losing is the failure > message we have from the plain output and this failure message is > reported outside of any targets or tasks. My sugg

Re: [Nant-users] Bug when using XmlLogger and build exceptions

2004-02-26 Thread Mike Roberts
Gert Driesen wrote: - Original Message - From: "Mike Roberts" <[EMAIL PROTECTED]> To: "Gert Driesen" <[EMAIL PROTECTED]> Should we only output the message of an exception, or also the stacktrace ? How should we represent nested exceptions in the xml log? should we have something like th

Re: [Nant-users] Bug when using XmlLogger and build exceptions

2004-02-26 Thread Gert Driesen
Mike, I've modified the XmlLogger locally, to use the following xml layout to report build failures : for build exceptions : (if location information is available) nested exception for internal errors :

RE: [Nant-users] Bug when using XmlLogger and build exceptions

2004-02-25 Thread Davis.Dwayne
sday, February 25, 2004 1:10 PM > To: [EMAIL PROTECTED]; [EMAIL PROTECTED] > Subject: [Nant-users] Bug when using XmlLogger and build exceptions > > > Hi there, > > We've been seeing a problem for a while when using CruiseControl.NET > where if a NAnt build fails du

Re: [Nant-users] Bug when using XmlLogger and build exceptions

2004-02-25 Thread Gert Driesen
: <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Wednesday, February 25, 2004 10:10 PM Subject: [Nant-users] Bug when using XmlLogger and build exceptions > Hi there, > > We've been seeing a problem for a while when using CruiseControl.NET > where if a NAnt build fa

[Nant-users] Bug when using XmlLogger and build exceptions

2004-02-25 Thread Mike Roberts
Hi there, We've been seeing a problem for a while when using CruiseControl.NET where if a NAnt build fails due to an exception then the reason is not outputted. We use the xmllogger when driving NAnt from CCNet so that we can style the output later. I always thought that it would be on standar