logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

Log::Agent::Tag::String - a constant tag string

Author

       Raphael Manfredi <Raphael_Manfredi@pobox.com>

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
           message, i.e. this parameter is false.

       "-separator" => string
           The separation string between the tag and the log message.  A single space by default.

       "-value" => string
           The tag's value.

Description

       This class represents a constant tag string.

Name

       Log::Agent::Tag::String - a constant tag string

See Also

Log::Agent::Tag(3), Log::Agent::Message(3).

perl v5.36.0                                       2022-10-15                            Agent::Tag::String(3pm)

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 => " -- ",
        );

See Also