agent::tag::string(3)
NAME
Log::Agent::Tag::String - a constant tag string
SYNOPSIS
require Log::Agent::Tag::String;
# Inherits from Log::Agent::Tag.
my $tag = Log::Agent::Tag::String->make(
-name => "session id",
-value => $session,
-postfix => 1,
-separator => " -- ",
);
DESCRIPTION
This class represents a constant tag string.
CREATION ROUTINE PARAMETERS
The following parameters are defined, in alphabetical
order:
- "-name" => name
- The name of this tag. Currently unused.
- "-postfix" => flag
- Whether tag should be placed after or before the log
message. By default, it is prepended to the log mes
sage, i.e. this parameter is false. - "-separator" => string
- The separation string between the tag and the log mes
sage. A single space by default. - "-value" => string
- The tag's value.
AUTHOR
Raphael Manfredi <Raphael_Manfredi@pobox.com>