in reply to Disable writing of eval'd errors to CGI log

I suspect you've left PrintError => 1 in DBI (which is its default value). This means DBI is warning, not dying and the eval block doesn't trap warnings -- they'll go to whatever your $SIG{__WARN__} handler is (which is probably the default and is printing to STDERR.) Set RaiseError => 1, PrintError => 0.

I don't know anything about BioPerl but expect it's also warnings.

  • Comment on Re: Disable writing of eval'd errors to CGI log

Replies are listed 'Best First'.
Re: Re: Disable writing of eval'd errors to CGI log
by Itatsumaki (Friar) on Nov 28, 2003 at 18:37 UTC

    Thanks: this did indeed fix the DBI-based warnings I was getting.