in reply to Re: Re: Re: Forgetting your good education
in thread Writing a perl quiz. Need advice.

Then create your own logfile. Something like:
BEGIN { open STDERR, ">>/home/myowndir/errorlogs.txt"; }

Replies are listed 'Best First'.
Re^5: Forgetting your good education
by Aristotle (Chancellor) on Mar 09, 2003 at 14:01 UTC
    Or to keep the nice CGI::Carp formatting for logged errors:
    BEGIN { use CGI::Carp qw(carpout); my $fn = "/home/joeschmoe/logs/foo_log"; open my $fh, ">>", $fn or die "Unable to open $fn for appending: $!\n"; carpout($fh); }

    Makeshifts last the longest.