in reply to Logging question

Tack on an elsif clause to your main if block:
elsif (++$cycles % 6 ==0 ) { $log->error("No new messages in the last 60 seconds"); }
And reset $cycles to zero inside the main if block.

The PerlMonk tr/// Advocate