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

String::Flogger - string munging for loggers

Author

       Ricardo SIGNES <cpan@semiotic.systems>

Contributors

       •   Randy Stauner <randy@magnificent-tears.com>

       •   Ricardo Signes <rjbs@semiotic.systems>

Methods

flog
       This method is described in the synopsis.

   format_string
         $flogger->format_string($fmt, \@input);

       This method is used to take the formatted arguments for a format string (when "flog" is passed an
       arrayref) and turn it into a string.  By default, it just uses ""sprintf" in perlfunc".

Name

       String::Flogger - string munging for loggers

Perl Version

       This module should work on any version of perl still receiving updates from the Perl 5 Porters.  This
       means it should work on any version of perl released in the last two to three years.  (That is, if the
       most recently released version is v5.40, then this module should work on both v5.40 and v5.38.)

       Although it may work on older versions of perl, no guarantee is made that the minimum required version
       will not be increased.  The version may be increased for any reason, and there is no promise that patches
       will be accepted to lower the minimum required perl.

Synopsis

         use String::Flogger qw(flog);

         my @inputs = (
           'simple!',

           [ 'slightly %s complex', 'more' ],

           [ 'and inline some data: %s', { look => 'data!' } ],

           [ 'and we can defer evaluation of %s if we want', sub { 'stuff' } ],

           sub { 'while avoiding sprintfiness, if needed' },
         );

         say flog($_) for @inputs;

       The above will output:

         simple!

         slightly more complex

         and inline some data: {{{ "look": "data!" }}}

         and we can defer evaluation of stuff if we want

         while avoiding sprintfiness, if needed

Version

       version 1.101246

See Also