http://www.perlmonks.org?node_id=427314


in reply to Mason error capturing

(Note: untested) Try setting $m->error_mode to fatal. The errors should end up in the server log.

rdfield

Replies are listed 'Best First'.
Re^2: Mason error capturing
by inblosam (Monk) on Feb 02, 2005 at 16:50 UTC
    As I stated, I already set my error mode to fatal. I noticed the errors are now showing up in my error log, so that point is settled.

    Still need some help capturing the error on the actual Error page to hide in HTML comments...anyone???


    Michael Jensen
      The docs state that the error mode is either fatal or output with no in between. I guess you could sub-class the constructor and re-write the fatals sub to do both.

      The problem, I guess, is that the error is (usually) during the interpreter phase, and doesn't get anywhere near your code, so you can't do anything too fancy. You could, of course, write a PerlLogHandler module that lets you know when an error's occured via email or somesuch.

      rdfield