--- trunk/lib/Frey/Run.pm 2008/10/28 18:33:53 195 +++ trunk/lib/Frey/Run.pm 2008/10/30 22:20:02 204 @@ -47,10 +47,13 @@ if ( $o->can('html') ) { warn "## turning over to $o->html"; $o->html( $req ); - } else { + } elsif ( $o->can('markup') ) { warn "## using $o->markup"; $html = $o->markup; warn ">>> markup $class ",length( $html ), " bytes\n"; + } else { + $html = "IGNORE: $class ", $o->dump; + warn $html; } }