NAME
Log::ger::UseDataDumper - Use Data::Dumper (with nicer defaults) to dump data structures
VERSION
This document describes version 0.005 of Log::ger::UseDataDumper (from Perl distribution Log-ger-UseDataDumper), released on 2020-06-06.
SYNOPSIS
use Log::ger::UseDataDumper;
To configure Data::Dumper:
use Log::ger::UseDataDumper (Indent => 0, Purity => 0);
DESCRIPTION
This module sets the Log::ger dumper to Data::Dumper, which by default is already the case but in this edition the default configuration is somewhat closer to that of Data::Dump:
Indent => 1,
Purity => 1,
Terse => 1,
Useqq => 1,
This module also lets you configure Data::Dumper during import (see example in Synopsis).
HOMEPAGE
Please visit the project's homepage at https://metacpan.org/release/Log-ger-UseDataDumper.
SOURCE
Source repository is at https://github.com/perlancar/perl-Log-ger-UseDataDumper.
BUGS
Please report any bugs or feature requests on the bugtracker website https://rt.cpan.org/Public/Dist/Display.html?Name=Log-ger-UseDataDumper
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.
SEE ALSO
Other modules to set data dumper for Log::ger:
AUTHOR
perlancar <perlancar@cpan.org>
COPYRIGHT AND LICENSE
This software is copyright (c) 2020, 2019, 2018 by perlancar@cpan.org.
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.