> I think i may have spotted a little bug. Or it may be outdated docs in
> DBIx::Recordset DEBUGGING section. The error follows the code below:
>
> open LOG, ">recordset.log" or die $!;
> *DBIx::Recordset::LOG = \*LOG ;
> $DBIx::Recordset::Debug = 2 ;
>
> Can't locate object method "STORE" via package "HTML::Embperl::Log"
>
When running under Embperl you have to untie *LOG first, because
DBIx::Recordset uses the embperl.log file per default for debugging output:

untie *DBIx::Recordset::LOG ;
open LOG, ">recordset.log" or die $!;
*DBIx::Recordset::LOG = \*LOG ;
$DBIx::Recordset::Debug = 2 ;

Gerald



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to