in reply to Re: Twisted Logic Filling My Logs, w/o Rendering Form
in thread Twisted Logic Filling My Logs, w/o Rendering Form

Yes, the cgi script itself starts off:

#!/usr/bin/perl -T use strict; use warnings; use Data::Dumper;
and liberally sprinkles in print STDERR debug statements. My issue is apparently not a fatal crash, but an endless loop. Its processing each household without rendering the webform for it, after the first one, of course.

My $self->_render_online_household_form() method is set to return the html for the form, to the $dashboard->_process_list_of_households() method, which also returns the html form to the cgi script which called it. The cgi script is supposed to print that $html if its defined.

My two modules written to drive this application are also begun with:

use strict; use warnings;
Its an old habit by now.

-- Hugh

if( $lal && $lol ) { $life++; }