libplack-middleware-logerrors-perl 0.003-1 source package in Ubuntu

Changelog

libplack-middleware-logerrors-perl (0.003-1) unstable; urgency=medium

  [ upstream ]
  * New release.

  [ Salvatore Bonaccorso ]
  * Update Vcs-* headers for switch to salsa.debian.org.

  [ gregor herrmann ]
  * Update URLs from {search,www}.cpan.org to MetaCPAN.
  * Update GitHub URLs to use HTTPS.

  [ Jonas Smedegaard ]
  * Simplify rules.
    Stop build-depend on devscripts cdbs.
  * Stop build-depend on dh-buildinfo.
  * Mark build-dependencies needed only for testsuite as such.
  * Declare compliance with Debian Policy 4.3.0.
  * Enable autopkgtest.
  * Set Rules-Requires-Root: no.
  * Update copyright info:
    + Extend coverage of packaging.
    + Use https protocol in Format URL.
  * Install example PSGI file.
  * Update git-buildpackage config: Filter any .git* file.
  * Update watch file:
    + Bump to file format 4.
    + Track only MetaCPAN URL.
    + Rewrite usage comment.
    + Use substitution strings.
  * Drop obsolete lintian override regarding debhelper 9.
  * Tighten lintian overrides regarding License-Reference.
  * Wrap and sort control file.

 -- Jonas Smedegaard <email address hidden>  Wed, 20 Feb 2019 21:38:48 +0100

Upload details

Uploaded by:
Debian Perl Group
Uploaded to:
Sid
Original maintainer:
Debian Perl Group
Architectures:
all
Section:
misc
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Oracular release universe misc
Noble release universe misc
Mantic release universe misc
Lunar release universe misc
Jammy release universe misc
Focal release universe misc

Builds

Disco: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
libplack-middleware-logerrors-perl_0.003-1.dsc 2.3 KiB 85b3911b73580934e123a1d2755ba0ba5b4a326c71243fa440bd41804cee0bac
libplack-middleware-logerrors-perl_0.003.orig.tar.gz 30.6 KiB 65d8ed4f0ede5a3ef6db77161eca882a8f8db5be4ee20c02ad874eb5c4a31c53
libplack-middleware-logerrors-perl_0.003-1.debian.tar.xz 3.6 KiB 001391f96e7cd374331260b6b1fbc9e51e011a8af9212f02b6099c41bc1977ec

Available diffs

No changes file available.

Binary packages built by this source

libplack-middleware-logerrors-perl: 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.