File: control.in

package info (click to toggle)
libplack-middleware-logerrors-perl 0.002-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 284 kB
  • ctags: 14
  • sloc: perl: 244; makefile: 14
file content (37 lines) | stat: -rw-r--r-- 1,722 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
Source: libplack-middleware-logerrors-perl
Section: perl
Priority: optional
Build-Depends: @cdbs@
Maintainer: Debian Perl Group <pkg-perl-maintainers@lists.alioth.debian.org>
Uploaders: Jonas Smedegaard <dr@jones.dk>
Standards-Version: 3.9.7
Vcs-Git: https://anonscm.debian.org/git/pkg-perl/packages/libplack-middleware-logerrors-perl
Vcs-Browser: https://anonscm.debian.org/cgit/pkg-perl/packages/libplack-middleware-logerrors-perl.git
Homepage: https://metacpan.org/pod/Plack::Middleware::LogErrors

Package: libplack-middleware-logerrors-perl
Architecture: all
Depends: ${cdbs:Depends},
 ${misc:Depends},
 ${perl:Depends}
Enhances: ${cdbs:Enhances}
Description: map psgi.errors to psgix.logger or other logger
 psgi.errors defaults to stderr in most backends, which results in
 content going somewhere unhelpful like the server console.
 .
 Plack::Middleware::LogErrors simply remaps the psgi.errors stream to
 the psgix.logger stream, or an explicit logger that you provide.
 .
 This is especially handy when used in combination with other
 middlewares such as Plack::Middleware::LogWarn (which diverts Perl
 warnings to psgi.errors); Plack::Middleware::HTTPExceptions (which
 diverts uncaught exceptions to psgi.errors); and
 Plack::Middleware::AccessLog, which defaults to psgi.errors when not
 passed a logger -- which is also automatically applied via plackup (so
 if you provided no --access-log option indicating a filename,
 psgi.errors is used).
 .
 Plack is a set of tools similar to Ruby's Rack or Python's Paste for
 WSGI. It implements the Perl Server Gateway Interface (PSGI) standard
 interface, which allows developers to decouple their web application
 framework from the local web server environment.