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_List - user-defined tags to add to every log

Author

       Raphael Manfredi <Raphael_Manfredi@pobox.com>

Description

       This class handles the list of user-defined tags, which are added to each log message.  The initial list
       is taken from the "-tags" argument of the logconfig() routine. See Log::Agent(3).

Interface

       The following interface is available:

       append list
           Append list of "Log::Agent::Tag" objects to the existing list.

       prepend list
           Prepends list of "Log::Agent::Tag" objects to the existing list.

Name

       Log::Agent::Tag_List - user-defined tags to add to every log

See Also

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

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

Synopsis

        use Log::Agent qw(logtags);

        my $taglist = logtags();
        $taglist->append(@tags);        # adds @tags at the tail of list
        $taglist->prepend(@tags);       # adds @tags at the head of list

See Also