On Wed, Aug 20, 2008 at 5:42 PM, Brett Randall <[EMAIL PROTECTED]> wrote: > I was wondering about debugging... I'll probably do the good old open a > file, write to it after each line, and see where it stops writing
No need to open a file. Anything you print to STDERR goes to apache's error_log, so just use warn() statements. For more serious stuff, use the debugger: http://perl.apache.org/docs/1.0/guide/debug.html - Perrin