in reply to Re^2: Log4perl script logs OK only initially
in thread Log4perl script logs OK only initially

I got this working by doing the following: 1. specifying the arguments in the add_entry line, e.g.
$cron->add_entry("0 5 * * *", {'subroutine' => \&TestSub, 'arguments' => [ ], } );
2. Reverting back to a "Log" subroutine, since for some reason, the $log_method wasn't working for me.

-- Burvil