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::Message::Handlers(3) User Contributed Perl Documentation Log::Message::Handlers(3)

Log::Message::Handlers - Message handlers for Log::Message

    # Implicitly used by Log::Message to serve as handlers for
    # Log::Message::Item objects

    # Create your own file with a package called
    # Log::Message::Handlers to add to the existing ones, or to even
    # overwrite them

    $item->carp;

    $item->trace;

Log::Message::Handlers provides handlers for Log::Message::Item objects. The handler corresponding to the level (see Log::Message::Item manpage for an explanation about levels) will be called automatically upon storing the error.

Handlers may also explicitly be called on an Log::Message::Item object if one so desires (see the Log::Message manpage on how to retrieve the Item objects).

Will simply log the error on the stack, and do nothing special

Will carp (see the Carp manpage) with the error, and add the timestamp of when it occurred.

Will croak (see the Carp manpage) with the error, and add the timestamp of when it occurred.

Will cluck (see the Carp manpage) with the error, and add the timestamp of when it occurred.

Will confess (see the Carp manpage) with the error, and add the timestamp of when it occurred

Will simply die with the error message of the item

Will simply warn with the error message of the item

Will provide a traceback of this error item back to the first one that occurred, clucking with every item as it comes across it.

If you wish to provide your own handlers, you can simply do the following:
  • Create a file that holds a package by the name of "Log::Message::Handlers"
  • Create subroutines with the same name as the levels you wish to handle in the Log::Message module (see the Log::Message manpage for explanation on levels)
  • Require that file in your program, or add it in your configuration (see the Log::Message::Config manpage for explanation on how to use a config file)

And that is it, the handler will now be available to handle messages for you.

The arguments a handler may receive are those specified by the "extra" key, when storing the message. See the Log::Message manpage for details on the arguments.

Log::Message, Log::Message::Item, Log::Message::Config

This module by Jos Boumans <kane@cpan.org>.

Thanks to Ann Barcomb for her suggestions.

This module is copyright (c) 2002 Jos Boumans <kane@cpan.org>. All rights reserved.

This library is free software; you may redistribute and/or modify it under the same terms as Perl itself.

2013-04-25 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.