SYNOPSIS

 require Log::Agent::Tag::Callback;
 # Inherits from Log::Agent::Tag.

 my $tag = Log::Agent::Tag::Callback->make(
     -name      => "session id",
     -callback  => Callback->new($obj, 'method', @args),
     -postfix   => 1,
     -separator => " -- ",
 );

DESCRIPTION

This class represents a dynamic tag string, whose value is determined by invoking a pre-determined callback, which is described by a \*(C`Callback\*(C' object.

You need to make your application depend on the \*(C`Callback\*(C' module from \s-1CPAN\s0 if you make use of this tagging feature, since \*(C`Log::Agent\*(C' does not depend on it, on purpose (it does not really use it, it only offers an interface to plug it in). At least version 1.02 must be used.

CREATION ROUTINE PARAMETERS

The following parameters are defined, in alphabetical order: The callback to invoke to determine the value of the tag. The call is protected via a busy flag, in case there is an unwanted recursion due to a call to one of the logging routines whilst within the callback. If the callback is busy, the tag emitted is: callback "user" busy assuming \*(C`user\*(C' is the name you supplied via \*(C`-name\*(C' for this tag. The name of this tag. Used to flag a callback as busy in case there is an unwanted recursion into the callback routine. Whether tag should be placed after or before the log message. By default, it is prepended to the log message, i.e. this parameter is false. The separation string between the tag and the log message. A single space by default.

AUTHOR

Raphael Manfredi <[email protected]>

RELATED TO Log::Agent::Tag::Callback…

Callback\|(3), Log::Agent::Tag\|(3), Log::Agent::Message\|(3).