GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
Log::Dispatch::Perl(3) User Contributed Perl Documentation Log::Dispatch::Perl(3)

Log::Dispatch::Perl - Use core Perl functions for logging

version 0.05

 use Log::Dispatch::Perl ();

 my $dispatcher = Log::Dispatch->new;
 $dispatcher->add( Log::Dispatch::Perl->new(
  name      => 'foo',
  min_level => 'info',
  action    => { debug     => '',
                 info      => '',
                 notice    => 'warn',
                 warning   => 'warn',
                 error     => 'die',
                 critical  => 'die',
                 alert     => 'croak',
                 emergency => 'croak',
               },
 ) );

 $dispatcher->warning( "This is a warning" );

The "Log::Dispatch::Perl" module offers a logging alternative using standard Perl core functions. It allows you to fall back to the common Perl alternatives for logging, such as "warn" and "cluck". It also adds the possibility for a logging action to halt the current environment, such as with "die" and "croak".

The following actions are currently supported (in alphabetical order):

Indicates no action should be executed. Default for log levels "debug" and "info".

Indicates a "carp" action should be executed. See "carp" in Carp. Halts execution.

Indicates a "cluck" action should be executed. See "cluck" in Carp. Does not halt execution.

Indicates a "confess" action should be executed. See "confess" in Carp. Halts execution.

Indicates a "croak" action should be executed. See "croak" in Carp. Halts execution.

Indicates a "die" action should be executed. See "die" in perlfunc. Halts execution.

Indicates a "warn" action should be executed. See "warn" in perlfunc. Does not halt execution.

Bugs may be submitted through the RT bug tracker <https://rt.cpan.org/Public/Dist/Display.html?Name=Log-Dispatch-Perl> (or bug-Log-Dispatch-Perl@rt.cpan.org <mailto:bug-Log-Dispatch-Perl@rt.cpan.org>).

I am also usually active on irc, as 'ether' at "irc.perl.org" and "irc.freenode.org".

Elizabeth Mattijsen (liz@dijkmat.nl)

Karen Etheridge <ether@cpan.org>

This software is copyright (c) 2020 by Elizabeth Mattijsen.

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

2020-05-17 perl v5.32.1

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.