X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Runtime.git;a=blobdiff_plain;f=lib%2FCatalyst%2FEngine.pm;h=4e63058ecb0da12bad064ddb3a020be30650c6ce;hp=691bd675e00ba5701cffa665f0fed7b9db0ff5b5;hb=f45789b1af1b76c31c498f4b713ab48a5f28ba0c;hpb=3ad654e0c538876403f3e664f0d9f302ef470770 diff --git a/lib/Catalyst/Engine.pm b/lib/Catalyst/Engine.pm index 691bd67..4e63058 100644 --- a/lib/Catalyst/Engine.pm +++ b/lib/Catalyst/Engine.pm @@ -521,7 +521,7 @@ sub prepare { my $value = defined($param) ? $param : ''; $t->addRow( $key, $value ); } - $c->log->debug( 'Parameters are', $t->draw ); + $c->log->debug( "Parameters are:\n" . $t->draw ); } return $c; @@ -694,7 +694,7 @@ sub setup { $t->setCols('Class'); $t->setColWidth( 'Class', 75, 1 ); $t->addRow($_) for sort keys %{ $self->components }; - $self->log->debug( 'Loaded components', $t->draw ) + $self->log->debug( "Loaded components:\n" . $t->draw ) if ( @{ $t->{tbl_rows} } ); }