On Wed, Apr 28, 2004 at 12:11:36PM +0200, Bud P. Bruegger wrote: > I put up a simple quixote/medusa app on a windows machine and I get the > impression that the log files are buffered. If this is true, is there a > simple way of flushing the logs (error, access, debug)? They should be line buffered. Initially they are set to stdout and stderr. They are opened using open(, "w", 1). Neil