use 5.008001; use strict; use warnings; package Log::Any; # ABSTRACT: Bringing loggers and listeners together our $VERSION = '1.717'; use Log::Any::Manager; use Log::Any::Proxy::Null; use Log::Any::Adapter::Util qw( require_dynamic detection_aliases detection_methods log_level_aliases logging_aliases logging_and_detection_methods logging_methods ); # This is overridden in Log::Any::Test our $OverrideDefaultAdapterClass; our $OverrideDefaultProxyClass; # singleton and accessor { my $manager = Log::Any::Manager->new(); sub _manager { return $manager } sub has_consumer { $manager->has_consumer } } sub import { my $class = shift; my $caller = caller(); my @export_params = ( $caller, @_ ); $class->_export_to_caller(@export_params); } sub _export_to_caller { my $class = shift; my $caller = shift; # Parse parameters passed to 'use Log::Any' my $saw_log_param; my @params; while ( my $param = shift @_ ) { if ( !$saw_log_param && $param =~ /^\$(\w+)/ ) { $saw_log_param = $1; # defer until later next; # singular } else { push @params, $param, shift @_; # pairwise } } unless ( @params % 2 == 0 ) { require Carp; Carp::croak("Argument list not balanced: @params"); } # get logger if one was requested if ( defined $saw_log_param ) { no strict 'refs'; my $proxy = $class->get_logger( category => $caller, @params ); my $varname = "${caller}::${saw_log_param}"; *$varname = \$proxy; } } sub get_logger { my ( $class, %params ) = @_; no warnings 'once'; my $category = defined $params{category} ? delete $params{'category'} : caller; if ( my $default = delete $params{'default_adapter'} ) { my @default_adapter_params = (); if (ref $default eq 'ARRAY') { ($default, @default_adapter_params) = @{ $default }; } # Every default adapter is set only for a given logger category. # When another adapter is configured (by using # Log::Any::Adapter->set) for this category, it takes # precedence, but if that adapter is later removed, the default # we set here takes over again. $class->_manager->set_default( $category, $default, @default_adapter_params ); } my $proxy_class = $class->_get_proxy_class( delete $params{proxy_class} ); my $adapter = $class->_manager->get_adapter( $category ); my $context = $class->_manager->get_context(); require_dynamic($proxy_class); return $proxy_class->new( %params, adapter => $adapter, category => $category, context => $context ); } sub _get_proxy_class { my ( $self, $proxy_name ) = @_; return $Log::Any::OverrideDefaultProxyClass if $Log::Any::OverrideDefaultProxyClass; return "Log::Any::Proxy" if !$proxy_name && _manager->has_consumer; return "Log::Any::Proxy::Null" if !$proxy_name; my $proxy_class = ( substr( $proxy_name, 0, 1 ) eq '+' ? substr( $proxy_name, 1 ) : "Log::Any::Proxy::$proxy_name" ); return $proxy_class; } # For backward compatibility sub set_adapter { my $class = shift; Log::Any->_manager->set(@_); } 1; __END__ =pod =encoding UTF-8 =head1 NAME Log::Any - Bringing loggers and listeners together =head1 VERSION version 1.717 =head1 SYNOPSIS In a CPAN or other module: package Foo; use Log::Any qw($log); # log a string $log->error("an error occurred"); # log a string and some data $log->info("program started", {progname => $0, pid => $$, perl_version => $]}); # log a string and data using a format string $log->debugf("arguments are: %s", \@_); # log an error and throw an exception die $log->fatal("a fatal error occurred"); In a Moo/Moose-based module: package Foo; use Log::Any (); use Moo; has log => ( is => 'ro', default => sub { Log::Any->get_logger }, ); In your application: use Foo; use Log::Any::Adapter; # Send all logs to Log::Log4perl Log::Any::Adapter->set('Log4perl'); # Send all logs to Log::Dispatch my $log = Log::Dispatch->new(outputs => [[ ... ]]); Log::Any::Adapter->set( 'Dispatch', dispatcher => $log ); # See Log::Any::Adapter documentation for more options =head1 DESCRIPTION C provides a standard log production API for modules. L allows applications to choose the mechanism for log consumption, whether screen, file or another logging mechanism like L or L. Many modules have something interesting to say. Unfortunately there is no standard way for them to say it - some output to STDERR, others to C, others to custom file logs. And there is no standard way to get a module to start talking - sometimes you must call a uniquely named method, other times set a package variable. This being Perl, there are many logging mechanisms available on CPAN. Each has their pros and cons. Unfortunately, the existence of so many mechanisms makes it difficult for a CPAN author to commit his/her users to one of them. This may be why many CPAN modules invent their own logging or choose not to log at all. To untangle this situation, we must separate the two parts of a logging API. The first, I, includes methods to output logs (like C<$log-Edebug>) and methods to inspect whether a log level is activated (like C<$log-Eis_debug>). This is generally all that CPAN modules care about. The second, I, includes a way to configure where logging goes (a file, the screen, etc.) and the code to send it there. This choice generally belongs to the application. A CPAN module uses C to get a log producer object. An application, in turn, may choose one or more logging mechanisms via L, or none at all. C has a very tiny footprint and no dependencies beyond Perl 5.8.1, which makes it appropriate for even small CPAN modules to use. It defaults to 'null' logging activity, so a module can safely log without worrying about whether the application has chosen (or will ever choose) a logging mechanism. See L for the original post proposing this module. =head1 LOG LEVELS C supports the following log levels and aliases, which is meant to be inclusive of the major logging packages: trace debug info (inform) notice warning (warn) error (err) critical (crit, fatal) alert emergency Levels are translated as appropriate to the underlying logging mechanism. For example, log4perl only has six levels, so we translate 'notice' to 'info' and the top three levels to 'fatal'. See the documentation of an adapter class for specifics. =head1 CATEGORIES Every logger has a category, generally the name of the class that asked for the logger. Some logging mechanisms, like log4perl, can direct logs to different places depending on category. =head1 PRODUCING LOGS (FOR MODULES) =head2 Getting a logger The most convenient way to get a logger in your module is: use Log::Any qw($log); This creates a package variable I<$log> and assigns it to the logger for the current package. It is equivalent to our $log = Log::Any->get_logger; In general, to get a logger for a specified category: my $log = Log::Any->get_logger(category => $category) If no category is specified, the calling package is used. A logger object is an instance of L, which passes on messages to the L handling its category. If the C argument is passed, an alternative to L (such as a subclass) will be instantiated and returned instead. The argument is automatically prepended with "Log::Any::Proxy::". If instead you want to pass the full name of a proxy class, prefix it with a "+". E.g. # Log::Any::Proxy::Foo my $log = Log::Any->get_logger(proxy_class => 'Foo'); # MyLog::Proxy my $log = Log::Any->get_logger(proxy_class => '+MyLog::Proxy'); =head2 Logging To log a message, pass a single string to any of the log levels or aliases. e.g. $log->error("this is an error"); $log->warn("this is a warning"); $log->warning("this is also a warning"); The log string will be returned so that it can be used further (e.g. for a C or C call). You should B include a newline in your message; that is the responsibility of the logging mechanism, which may or may not want the newline. If you want to log additional structured data alongside with your string, you can add a single hashref after your log string. e.g. $log->info("program started", {progname => $0, pid => $$, perl_version => $]}); If the configured L does not support logging structured data, the hash will be converted to a string using L. There are also versions of each of the logging methods with an additional "f" suffix (C, C, C, etc.) that format a list of arguments. The specific formatting mechanism and meaning of the arguments is controlled by the L object. $log->errorf("an error occurred: %s", $@); $log->debugf("called with %d params: %s", $param_count, \@params); By default it renders like L|perlfunc/"sprintf FORMAT, LIST">, with the following additional features: =over =item * Any complex references (like C<\@params> above) are automatically converted to single-line strings with L. =item * Any undefined values are automatically converted to the string "". =back =head2 Log level detection To detect whether a log level is on, use "is_" followed by any of the log levels or aliases. e.g. if ($log->is_info()) { ... } $log->debug("arguments are: " . Dumper(\@_)) if $log->is_debug(); This is important for efficiency, as you can avoid the work of putting together the logging message (in the above case, stringifying C<@_>) if the log level is not active. The formatting methods (C, C, etc.) check the log level for you. Some logging mechanisms don't support detection of log levels. In these cases the detection methods will always return 1. In contrast, the default logging mechanism - Null - will return 0 for all detection methods. =head2 Log context data C supports logging context data by exposing the C hashref. All the key/value pairs added to this hash will be printed with every log message. You can localize the data so that it will be removed again automatically at the end of the block: $log->context->{directory} = $dir; for my $file (glob "$dir/*") { local $log->context->{file} = basename($file); $log->warn("Can't read file!") unless -r $file; } This will produce the following line: Can't read file! {directory => '/foo',file => 'bar'} If the configured L does not support structured data, the context hash will be converted to a string using L, and will be appended to the log message. =head2 Setting an alternate default logger When no other adapters are configured for your logger, C uses the C. To choose something other than Null as the default, either set the C environment variable, or pass it as a parameter when loading C use Log::Any '$log', default_adapter => 'Stderr'; The name of the default class follows the same rules as used by L. To pass arguments to the default adapter's constructor, use an arrayref: use Log::Any '$log', default_adapter => [ 'File' => '/var/log/mylog.log' ]; When a consumer configures their own adapter, the default adapter will be overridden. If they later remove their adapter, the default adapter will be used again. =head2 Configuring the proxy Any parameters passed on the import line or via the C method are passed on to the L constructor. use Log::Any '$log', filter => \&myfilter; =head2 Testing L provides a mechanism to test code that uses C. =head1 CONSUMING LOGS (FOR APPLICATIONS) Log::Any provides modules with a L object, which is the log producer. To consume its output and direct it where you want (a file, the screen, syslog, etc.), you use L along with a destination-specific subclass. For example, to send output to a file via L, your application could do this: use Log::Any::Adapter ('File', '/path/to/file.log'); See the L documentation for more details. To detect if a consumer exists, use C<< Log::Any->has_consumer >>. =head1 Q & A =over =item Isn't Log::Any just yet another logging mechanism? No. C does not include code that knows how to log to a particular place (file, screen, etc.) It can only forward logging requests to another logging mechanism. =item Why don't you just pick the best logging mechanism, and use and promote it? Each of the logging mechanisms have their pros and cons, particularly in terms of how they are configured. For example, log4perl offers a great deal of power and flexibility but uses a global and potentially heavy configuration, whereas L is extremely configuration-light but doesn't handle categories. There is also the unnamed future logger that may have advantages over either of these two, and all the custom in-house loggers people have created and cannot (for whatever reason) stop using. =item Is it safe for my critical module to depend on Log::Any? Our intent is to keep C minimal, and change it only when absolutely necessary. Most of the "innovation", if any, is expected to occur in C, which your module should not have to depend on (unless it wants to direct logs somewhere specific). C has no non-core dependencies. =item Why doesn't Log::Any use I? To encourage CPAN module authors to adopt and use C, we aim to have as few dependencies and chances of breakage as possible. Thus, no C or other niceties. =back =head1 AUTHORS =over 4 =item * Jonathan Swartz =item * David Golden =item * Doug Bell =item * Daniel Pittman =item * Stephen Thirlwall =back =head1 CONTRIBUTORS =for stopwords Andrew Grechkin Hewus Fresh bj5004 cm-perl Doug Bell Jonathan Rubin Karen Etheridge Konstantin S. Uvarin Larry Leszczynski Lucas Kanashiro Maros Kollar Maxim Vuets mephinet Michael Conrad Nick Tonkin Paul Durden Philipp Gortan Phill Legault Samuel Ng Shlomi Fish Sven Willenbuecher XSven =over 4 =item * Andrew Grechkin =item * Andrew Hewus Fresh =item * bj5004 =item * cm-perl =item * Doug Bell =item * Jonathan =item * Jonathan Rubin =item * Karen Etheridge =item * Konstantin S. Uvarin =item * Larry Leszczynski =item * Lucas Kanashiro =item * Maros Kollar =item * Maxim Vuets =item * mephinet =item * Michael Conrad =item * Nick Tonkin <1nickt@users.noreply.github.com> =item * Paul Durden =item * Philipp Gortan =item * Phill Legault =item * Samuel Ng =item * Samuel Ng =item * Shlomi Fish =item * Sven Willenbuecher =item * XSven =back =head1 COPYRIGHT AND LICENSE This software is copyright (c) 2017 by Jonathan Swartz, David Golden, and Doug Bell. This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself. =cut