On Fri, 22 Feb 2002, Mike Kaufman <[EMAIL PROTECTED]> wrote: > Does ant buffer output from an exec'd task and output it all at > once?
It buffers output up to line breaks - after that it gets logged via Ant's logging system, additional buffering may take place depending on the logger in use. DefaultLogger uses a PrintStream, in 1.5alpha this PrintStream is explicitly set to autoflush, while it hasn't been that way in 1.4.1 - so maybe this PrintStream does some extra buffering in your case. Stefan -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>
