Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/pughpugh/log-any-adapter-test-more

Log::Any::Adapter::Test::More
https://github.com/pughpugh/log-any-adapter-test-more

Last synced: about 2 months ago
JSON representation

Log::Any::Adapter::Test::More

Awesome Lists containing this project

README

        

=pod

=head1 NAME

Log::Any::Adapter::Test::More - Output Log::Any logs as Test::More diagnostics

=head1 SYNOPSIS

use Log::Any::Adapter;

Log::Any::Adapter->set( 'Test::More', level => 'info' );

=head1 DESCRIPTION

This Log::Any adapter uses L diagnostics for logging.

=head1 LOG LEVEL TRANSLATION

Log levels are translated from Log::Any to Test::More as follows:

trace, debug, info, notice => note
warning, error, critical, alert, emergency => diag

=head1 LOG LEVEL LIMITING

You can set the log level to limit output. Default is trace.

Log::Any::Adapter->set( 'Test::More', level => 'debug' );

=head1 SEE ALSO

L, L

=head1 AUTHOR

Hugh Gallagher

=head1 COPYRIGHT & LICENSE

Copyright (C) 2013 Hugh Gallagher, all rights reserved.

This program is free software; you can redistribute it and/or modify it under
the same terms as Perl itself.