Re: [NAnt-users] Exec task streaming standard out

2008-02-18 Thread Martin Gainty
Hi jeff- I *believe* Nant.exe.config has the log4net threshold parameters e.g. HTH M- - Original Message - From: Jeff Richter To: nant-users@lists.sourceforge.net Sent: Monday, February 18, 2008 1:58 PM Sub

Re: [NAnt-users] Exec task streaming standard out

2008-02-18 Thread Jeff Richter
Gert, Based on your reply I did some more investigative testing and it turns out this is a language-specific issue related to buffering output. We have several internal test tools that I am trying to wrap with NAnt and I was seeing this buffering with tools written in both Perl and C++.

Re: [NAnt-users] Exec task streaming standard out

2008-02-18 Thread Gert Driesen
Hey Jeff, We're actually not using log4net for our regular build output. Also, we do not treat stderr any different from stdout (except for the logging level). Do you have a small repro that shows the behavior you're seeing? Gert _ From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]

[NAnt-users] Exec task streaming standard out

2008-02-18 Thread Jeff Richter
Hi All, The default behavior of the Exec task seems to be to stream standard error to the console, but to butter standard out and only dump the buffer to the console (or log file for that matter) when the exec'd task completes. Can anyone tell me if there is also a way to also stream the st