GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
Log::Dispatch::ArrayWithLimits(3) User Contributed Perl Documentation Log::Dispatch::ArrayWithLimits(3)

Log::Dispatch::ArrayWithLimits - Log to array, with some limits applied

This document describes version 0.050 of Log::Dispatch::ArrayWithLimits (from Perl distribution Log-Dispatch-ArrayWithLimits), released on 2019-01-09.

 use Log::Dispatch::ArrayWithLimits;

 my $file = Log::Dispatch::ArrayWithLimits(
     min_level     => 'info',
     array         => $ary,    # default: [], you can always refer by name e.g. 'My::array' to refer to @My::array
     max_elems     => 100,     # defaults unlimited
 );

 $file->log(level => 'info', message => "Your comment\n");

This module functions similarly to Log::Dispatch::Array, with a few differences:
  • only the messages (strings) are stored
  • allow specifying array variable name (e.g. "My::array" instead of \@My:array)

    This makes it possible to use in Log::Log4perl configuration, which is a text file.

  • can apply some limits

    Currently only max_elems (the maximum number of elements in the array) is available. Future limits will be added.

Logging to an in-process array can be useful when debugging/testing, or when you want to let users of your program connect to your program to request viewing the ogs being produced.

Constructor. This method takes a hash of parameters. The following options are valid: "min_level" and "max_level" (see Log::Dispatch documentation); "array" (a reference to an array, or if value is string, will be taken as name of array variable; this is so this module can be used/configured e.g. by Log::Log4perl because configuration is specified via a text file), "max_elems".

Send a message to the appropriate output. Generally this shouldn't be called directly but should be called through the "log()" method (in LLog::Dispatch::Output>).

Please visit the project's homepage at <https://metacpan.org/release/Log-Dispatch-ArrayWithLimits>.

Source repository is at <https://github.com/perlancar/perl-Log-Dispatch-ArrayWithLimits>.

Please report any bugs or feature requests on the bugtracker website <https://rt.cpan.org/Public/Dist/Display.html?Name=Log-Dispatch-ArrayWithLimits>

When submitting a bug or request, please include a test-file or a patch to an existing test-file that illustrates the bug or desired feature.

Log::Dispatch

Log::Dispatch::Array

perlancar <perlancar@cpan.org>

This software is copyright (c) 2019, 2014 by perlancar@cpan.org.

This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.

2019-01-09 perl v5.32.1

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.