The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

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 https://metacpan.org/release/Log-Any-Adapter-Core-Patch-UseDataDumperPerltidy.

SOURCE

Source repository is at https://github.com/sharyanto/perl-Log-Any-Adapter-Core-Patch-UseDataDumperPerltidy.

BUGS

Please report any bugs or feature requests on the bugtracker website https://rt.cpan.org/Public/Dist/Display.html?Name=Log-Any-Adapter-Core-Patch-UseDataDumperPerltidy

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 <stevenharyanto@gmail.com>

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.