NAME Log::Any::Adapter::Core::Patch::UseDataDumperPerltidy - Use Data::Dumper::Perltidy VERSION version 0.03 SYNOPSIS use Log::Any '$log'; use Log::Any::PT; # shortcut for Log::Any::Adapter::Core::Patch::UseDataDumperPerltidy; $log->debug("See this data structure: %s", $some_data); DESCRIPTION Log::Any dumps data structures using Data::Dumper with settings: Indent=0. This is rather hard to read. This patch replaces dumping with using Data::Dumper::Perltidy which has nicer output. But note that Data::Dumper::Perltidy is rather slow (about 500x slower than Data::Dumper and 50x slower than Data::Dump) and has heavier startup time (about 0.1s, 37K lines). IMO it has the nicest output though. FAQ SEE ALSO Log::Any::Adapter::Core::Patch::SetDumperIndent Log::Any::Adapter::Core::Patch::UseDataDump HOMEPAGE Please visit the project's homepage at . SOURCE Source repository is at . BUGS Please report any bugs or feature requests on the bugtracker website When submitting a bug or request, please include a test-file or a patch to an existing test-file that illustrates the bug or desired feature. AUTHOR Steven Haryanto COPYRIGHT AND LICENSE This software is copyright (c) 2013 by Steven Haryanto. This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.