> I'm just trying to get a general feeling here from the community. > > I have a script that I am getting ready to turn over in > "production mode". I > am using 'use strict' of course, and during my coding and > testing, have > enable warnings.
you can keep the warnings and use some means of sending errors/warnings to log. here is what i use in a script that runs twice a day: use CGI::Carp qw(carpout); .... open (ERRLOG, ">/dbtmp/tmp/err.out") or die "can't open error file\n"; carpout(\*ERRLOG) -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]