Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/pughpugh/log-any-adapter-test-more
- Owner: pughpugh
- Created: 2013-07-23T15:30:45.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2013-09-30T10:14:11.000Z (about 11 years ago)
- Last Synced: 2023-03-27T16:44:06.569Z (almost 2 years ago)
- Language: Perl
- Size: 121 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.pod
- Changelog: Changes
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.