X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=gitmo%2FMouse.git;a=blobdiff_plain;f=lib%2FMouse%2FUtil.pm;h=b7ab693e809fd5b987eb029fd0f7cae3a85a6a0e;hp=490886364153244852ab18f14849744c950827b5;hb=0cf6f1be4b31b31a9e0f9850e730123759ce35eb;hpb=b64e20073d4f273ede4e5c8e9400f889a8f9938f diff --git a/lib/Mouse/Util.pm b/lib/Mouse/Util.pm index 4908863..b7ab693 100644 --- a/lib/Mouse/Util.pm +++ b/lib/Mouse/Util.pm @@ -344,7 +344,7 @@ sub dump :method { require 'Data/Dumper.pm'; # we don't want to create its namespace my $dd = Data::Dumper->new([$self]); - $dd->Maxdepth(defined($maxdepth) ? $maxdepth : 2); + $dd->Maxdepth(defined($maxdepth) ? $maxdepth : 3); $dd->Indent(1); return $dd->Dump(); }