logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

Log::Dispatch::Code - Object for logging to a subroutine reference

Author

       Dave Rolsky <autarch@urth.org>

Constructor

       The constructor takes the following parameters in addition to the standard parameters documented in
       Log::Dispatch::Output:

       •   code ($)

           The subroutine reference.

Description

       This module supplies a simple object for logging to a subroutine reference.

How It Works

       The subroutine you provide will be called with a hash of named arguments. The two arguments are:

       •   level

           The log level of the message. This will be a string like "info" or "error".

       •   message

           The message being logged.

Name

       Log::Dispatch::Code - Object for logging to a subroutine reference

Source

       The       source      code      repository      for      Log-Dispatch      can      be      found      at
       <https://github.com/houseabsolute/Log-Dispatch>.

Support

       Bugs may be submitted at <https://github.com/houseabsolute/Log-Dispatch/issues>.

Synopsis

         use Log::Dispatch;

         my $log = Log::Dispatch->new(
             outputs => [
                 [
                     'Code',
                     min_level => 'emerg',
                     code      => \&_log_it,
                 ],
             ]
         );

         sub _log_it {
             my %p = @_;

             warn $p{message};
         }

Version

       version 2.71

See Also