--- trunk/run.pl 2007/11/12 12:35:32 1043 +++ trunk/run.pl 2007/11/27 23:45:26 1067 @@ -331,9 +331,11 @@ $log->debug("calling $module->new(",dump( $output ),")"); my $out = new $module->new( $output ); - $out->init; - - push @output_modules, $out; + if ( $out->init ) { + push @output_modules, $out; + } else { + $log->warn("SKIPPED $module"); + } }