> Again... appears to work. > > However the log file takes quite a long time to starting showing any > action, and then stay well behind the console output. >
Try adding the following line after your 'use warnings' line: $|++; That will disable output buffering on the currently-selected filehandle (STDOUT be default). -- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] http://learn.perl.org/
