| Log-Any-Adapter documentation | Contained in the Log-Any-Adapter distribution. |
Log::Any::Adapter -- Tell Log::Any where to send its logs
use Log::Any::Adapter;
# Use Log::Log4perl for all categories
#
Log::Log4perl::init('/etc/log4perl.conf');
Log::Any::Adapter->set('Log4perl');
# Use Log::Dispatch for Foo::Baz
#
use Log::Dispatch;
my $log = Log::Dispatch->new(outputs => [[ ... ]]);
Log::Any::Adapter->set( { category => 'Foo::Baz' },
'Dispatch', dispatcher => $log );
# Use Log::Dispatch::Config for Foo::Baz and its subcategories
#
use Log::Dispatch::Config;
Log::Dispatch::Config->configure('/path/to/log.conf');
Log::Any::Adapter->set(
{ category => qr/^Foo::Baz/ },
'Dispatch', dispatcher => Log::Dispatch::Config->instance() );
# Use your own adapter for all categories
#
Log::Any::Adapter->set('+My::Log::Any::Adapter', ...);
The Log-Any-Adapter distribution implements Log::Any class
methods to specify where logs should be sent. It is a separate distribution so
as to keep Log::Any itself as simple and unchanging as possible.
You do not have to use anything in this distribution explicitly. It will be auto-loaded when you call one of the methods below.
In order to use a logging mechanism with Log::Any, there needs to be an
adapter class for it. Typically this is named Log::Any::Adapter::something.
The following adapters are available on CPAN as of this writing:
You may also find other adapters on CPAN by searching for "Log::Any::Adapter", or create your own adapter. See Log::Any::Adapter::Development (Log::Any::Adapter::Development) for more information on the latter.
This method sets the adapter to use for all log categories, or for a particular set of categories.
adapter_name is the name of an adapter. It is automatically prepended with "Log::Any::Adapter::". If instead you want to pass the full name of an adapter, prefix it with a "+". e.g.
# Use My::Adapter class
Log::Any::Adapter->set('+My::Adapter', arg => $value);
adapter_params are passed along to the adapter constructor. See the documentation for the individual adapter classes for more information.
An optional hash of options may be passed as the first argument. Options are:
A string containing a category name, or a regex (created with qr//) matching multiple categories. If not specified, all categories will be affected.
A reference to a lexical variable. When the variable goes out of scope, the adapter setting will be removed. e.g.
{
Log::Any::Adapter->set({lexically => \my $lex}, ...);
# in effect here
...
}
# no longer in effect here
set returns an entry object, which can be passed to remove.
Remove an entry previously returned by set.
Log::Any maintains a stack of entries created via set.
When you get a logger for a particular category, Log::Any will work its way
down the stack and use the first matching entry.
Whenever the stack changes, any Log::Any loggers that have previously been
created will automatically adjust to the new stack. For example:
my $log = Log::Any->get_logger();
$log->error("aiggh!"); # this goes nowhere
...
{
Log::Any::Adapter->set({ local => \my $lex }, 'Log4perl');
$log->error("aiggh!"); # this goes to log4perl
...
}
$log->error("aiggh!"); # this goes nowhere again
Jonathan Swartz
Copyright (C) 2009 Jonathan Swartz.
Log::Any is provided "as is" and without any express or implied warranties, including, without limitation, the implied warranties of merchantibility and fitness for a particular purpose.
This program is free software; you canredistribute it and/or modify it under the same terms as Perl itself.
| Log-Any-Adapter documentation | Contained in the Log-Any-Adapter distribution. |
package Log::Any::Adapter; use 5.006; use Log::Any; use Log::Any::Manager; use Log::Any::Adapter::Util qw(make_method); use strict; use warnings; our $VERSION = '0.03'; # Checked by Log::Any to see if get_logger should be forwarded here # our $Initialized = 1; my $manager = Log::Any::Manager->new(); foreach my $method (qw(get_logger set remove)) { make_method( $method, sub { my $class = shift; return $manager->$method(@_); } ); } 1; __END__