.\" -*- mode: troff; coding: utf-8 -*- .\" Automatically generated by Pod::Man 5.01 (Pod::Simple 3.43) .\" .\" Standard preamble: .\" ======================================================================== .de Sp \" Vertical space (when we can't use .PP) .if t .sp .5v .if n .sp .. .de Vb \" Begin verbatim text .ft CW .nf .ne \\$1 .. .de Ve \" End verbatim text .ft R .fi .. .\" \*(C` and \*(C' are quotes in nroff, nothing in troff, for use with C<>. .ie n \{\ . ds C` "" . ds C' "" 'br\} .el\{\ . ds C` . ds C' 'br\} .\" .\" Escape single quotes in literal strings from groff's Unicode transform. .ie \n(.g .ds Aq \(aq .el .ds Aq ' .\" .\" If the F register is >0, we'll generate index entries on stderr for .\" titles (.TH), headers (.SH), subsections (.SS), items (.Ip), and index .\" entries marked with X<> in POD. Of course, you'll have to process the .\" output yourself in some meaningful fashion. .\" .\" Avoid warning from groff about undefined register 'F'. .de IX .. .nr rF 0 .if \n(.g .if rF .nr rF 1 .if (\n(rF:(\n(.g==0)) \{\ . if \nF \{\ . de IX . tm Index:\\$1\t\\n%\t"\\$2" .. . if !\nF==2 \{\ . nr % 0 . nr F 2 . \} . \} .\} .rr rF .\" ======================================================================== .\" .IX Title "Plack::Middleware::LogAny 3pm" .TH Plack::Middleware::LogAny 3pm 2024-03-07 "perl v5.38.2" "User Contributed Perl Documentation" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l .nh .SH NAME Plack::Middleware::LogAny \- Use Log::Any to handle logging from your Plack app .SH VERSION .IX Header "VERSION" version 0.001 .SH SYNOPSIS .IX Header "SYNOPSIS" .Vb 4 \& builder { \& enable "LogAny", category => "plack"; \& $app; \& } .Ve .SH DESCRIPTION .IX Header "DESCRIPTION" LogAny is a Plack::Middleware component that allows you to use Log::Any to handle the logging object, \f(CW\*(C`psgix.logger\*(C'\fR. .PP It really tries to be the thinnest possible shim, so it doesn't handle any configuration beyond setting the category to which messages from plack might be logged. .SH METHODS .IX Header "METHODS" .SS prepare_app .IX Subsection "prepare_app" This method initializes the logger using the category that you (optionally) set. .SS call .IX Subsection "call" Actually handles making sure the logger is invoked. .SH CONFIGURATION .IX Header "CONFIGURATION" .IP category 4 .IX Item "category" The \f(CW\*(C`Log::Any\*(C'\fR category to send logs to. Defaults to \f(CW\*(Aq\*(Aq\fR which means it send to the root logger. .SH "SEE ALSO" .IX Header "SEE ALSO" Log::Any .SH AUTHOR .IX Header "AUTHOR" Michael Alan Dorman .SH "COPYRIGHT AND LICENSE" .IX Header "COPYRIGHT AND LICENSE" This software is copyright (c) 2012 by Michael Alan Dorman. .PP This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.