Agent::Tag::Caller(3pm) | User Contributed Perl Documentation | Agent::Tag::Caller(3pm) |
Log::Agent::Tag::Caller - formats caller information
Not intended to be used directly Inherits from Log::Agent::Tag.
This class handles caller information for Log::Agent services and is not meant to be used directly.
This manpage therefore only documents the creation routine parameters that can be specified at the Log::Agent level via the "-caller" switch in the logconfig() routine.
This class knows about four entities: package, filename, line and subroutine, which are to be understood within the context of the Log::Agent routine being called (e.g. a logwarn() routine), namely:
The purpose of those parameters is to define how caller information entities (as defined by the previous section) will be formatted within the log message.
-display => '($package::$sub/$line)'
Don't forget to use simple quotes to avoid having Perl interpolate those as variables, or escape their leading "$" sign otherwise. Using this convention was deemed to more readable (and natural in Perl) than SGML entities such as "&pack;".
Using this switch supersedes the "-info" and "-format" switches.
-format => "%s:%4d"
if you have specified two entities in "-info".
The special formatting macro %a stands for all the entities specified by "-info" and is rendered by a string where values are separated by ":".
-info => "pack sub line"
would only report those three entities.
Raphael Manfredi <Raphael_Manfredi@pobox.com> created the module, it is currently maintained by Mark Rogaski <mrogaski@cpan.org>.
Thanks to Jeff Boes for uncovering wackiness in caller().
Copyright (C) 1999 Raphael Manfredi. Copyright (C) 2002 Mark Rogaski; all rights reserved.
See Log::Agent(3) or the README file included with the distribution for license information.
2022-10-15 | perl v5.34.0 |