php-psr-log 1.0.0-4 source package in Ubuntu

Changelog

php-psr-log (1.0.0-4) unstable; urgency=medium

  * Team upload
  * Update Standards-Version to 3.9.7
  * Rebuild with recent pkg-php-tools for the PHP 7.0 transition

 -- David Prévot <email address hidden>  Fri, 18 Mar 2016 13:25:32 -0400

Upload details

Uploaded by:
Debian PHP PEAR Maintainers
Uploaded to:
Sid
Original maintainer:
Debian PHP PEAR Maintainers
Architectures:
all
Section:
misc
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section

Builds

Yakkety: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
php-psr-log_1.0.0-4.dsc 1.6 KiB cd4c6e68ddc45b480a5e10b1bcbc1d63ddfc1bb4c52b62f265f9fb96dea7ebf8
php-psr-log_1.0.0.orig.tar.gz 4.5 KiB 0b54f47edad44c0e32847292863a3204c4c3a04ae68448b73b01b3b6c51733ab
php-psr-log_1.0.0-4.debian.tar.xz 2.5 KiB 605c1941be069c4b489851972aaab6730818ab3df85e7f48ff467a3e2b962a8c

No changes file available.

Binary packages built by this source

php-psr-log: common interface for logging libraries

 The main goal is to allow libraries to receive a Psr\Log\LoggerInterface object
 and write logs to it in a simple and universal way. Frameworks and CMSs that
 have custom needs MAY extend the interface for their own purpose, but SHOULD
 remain compatible with this document. This ensures that the third-party
 libraries an application uses can write to the centralized application logs.
 .
 The LoggerInterface exposes eight methods to write logs to the eight RFC 5424
 levels (debug, info, notice, warning, error, critical, alert, emergency).
 .
 A ninth method, log, accepts a log level as first argument. Calling this method
 with one of the log level constants MUST have the same result as calling the
 level-specific method. Calling this method with a level not defined by this
 specification MUST throw a Psr\Log\InvalidArgumentException if the
 implementation does not know about the level. Users SHOULD NOT use a custom
 level without knowing for sure the current implementation supports it.
 .
 Note that this is not a logger of its own. It is merely an interface that
 describes a logger. See the specification for more details.