X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=gitmo%2FMouse.git;a=blobdiff_plain;f=lib%2FMouse%2FObject.pm;h=16846f5d5a7c57f203cde7a0a1e805f970df7859;hp=8aa22b571fd4529ba032b5fc2e49b4d3378a77d2;hb=1b9e472d8c7e704eced9b2ea83194f83f0265018;hpb=121acb8a89acd75e7a664241df7e8220d864c879 diff --git a/lib/Mouse/Object.pm b/lib/Mouse/Object.pm index 8aa22b5..16846f5 100644 --- a/lib/Mouse/Object.pm +++ b/lib/Mouse/Object.pm @@ -71,7 +71,8 @@ sub dump { require 'Data/Dumper.pm'; # we don't want to create its namespace my $dd = Data::Dumper->new([$self]); - $dd->Maxdepth(defined($maxdepth) ? $maxdepth : 1); + $dd->Maxdepth(defined($maxdepth) ? $maxdepth : 2); + $dd->Indent(1); return $dd->Dump(); }