Subject: | LoadHITs.pm calls a non-existant subroutine |
Lines 341 and 345 both call a non-existent subroutine,
formatDataStructure. This makes debugging quite difficult.
Fix:
use Data::Dumper;
line 341 changed from
formatDataStructure($mturk->request, 4) . "\n";
To:
Dumper($mturk->request, 4) . "\n";
line 345 changed from:
formatDataStructure($mturk->response->fullResult, 4) . "\n";
To:
Dumper($mturk->response->fullResult, 4) . "\n";