Re: [Boston.pm] CGI::Carp and mod_perl

2004-08-04 Thread John Saylor
hi ( 04.08.03 17:57 -0400 ) Ron Newman: die Death by chocolate\n; could be the newline at the end. also try 'warn'-ing instead of 'die'-ing. -- \js oblique strategy: use an unacceptable color ___ Boston-pm mailing list [EMAIL PROTECTED]

[Boston.pm] CGI::Carp and mod_perl

2004-08-03 Thread Ron Newman
If I run this under mod_perl: #!/usr/bin/perl use CGI::Carp; die Death by chocolate\n; the Apache error log reads: [Tue Aug 3 17:54:00 2004] [error] [Tue Aug 3 17:54:00 2004] null: Death by chocolate If I run it without mod_perl, it prints out the name of my script instead of null. Why