in reply to What module do you like for debugging CGI scripts
use strict; use warnings; # Log Perl Warnings and Errors - Standard # may have to make the blank file "error.log". use CGI::Carp qw(carpout); open(LOG, '>>', './error.log') or die "Unable to append to at $!\n"; carpout(*LOG);
|
|---|