From: Andy Grundman Date: Fri, 13 Jan 2006 18:50:20 +0000 (+0000) Subject: Made _dump support more than 1 item X-Git-Tag: 5.7099_04~750 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Runtime.git;a=commitdiff_plain;h=475616f8b8b4720721efd3a395197930832aba06;hp=367c3420bd03291e2c7e5cc3d1a21cf2e2c21a19 Made _dump support more than 1 item --- diff --git a/lib/Catalyst/Log.pm b/lib/Catalyst/Log.pm index 4b3c3c3..809294e 100644 --- a/lib/Catalyst/Log.pm +++ b/lib/Catalyst/Log.pm @@ -63,7 +63,7 @@ sub disable { sub _dump { my $self = shift; local $Data::Dumper::Terse = 1; - $self->info( Dumper( $_[0] ) ); + $self->info( Dumper( @_ ) ); } sub _log {