php-psr-log 1.1.3-2build1 source package in Ubuntu

Changelog

php-psr-log (1.1.3-2build1) impish; urgency=medium

  * No change rebuild for PHP 8.0

 -- Bryce Harrington <email address hidden>  Fri, 14 May 2021 22:53:31 +0000

Upload details

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

See full publishing history Publishing

Series Pocket Published Component Section

Builds

Impish: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
php-psr-log_1.1.3.orig.tar.gz 5.7 KiB 7b8d14c735202d34bbbcf4334f0ff83c5228ff39ef854a4cf60f1c5f7faeb3da
php-psr-log_1.1.3-2build1.debian.tar.xz 4.1 KiB dd6ab09a72628af9e0545c3c9fa18ece7bb386a0f1391c4016e20b2b36949fa9
php-psr-log_1.1.3-2build1.dsc 2.0 KiB cef23b7586cfc63cd51dd7bbd9e6e43dbb954e39979ae340a11c2fe85245a4f5

View changes file

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.