I have a simple CGI script that doesn't write the warning message into
error.log.
It does log the warning message if I call die. I'm running Apache 1.3.14 on
Windows 2000 Professional with ActiveState Perl build 620.
Any help will be appreciated.
Chris Song
#!d:/perl/bin/perl.exe -wT
use strict;
use CGI;
use CGI::Carp;
my $cgi = new CGI;
warn "Some warning message\n";
# die "I'm dying\n"; # This will log the above warning message to error.log
print $cgi->header("text/plain");
print "Hello!\n";
_______________________________________________
Perl-Win32-Web mailing list
[EMAIL PROTECTED]
http://listserv.ActiveState.com/mailman/listinfo/perl-win32-web