php-psr-log 1.1.1-1 source package in Ubuntu

Changelog

php-psr-log (1.1.1-1) unstable; urgency=medium

  * Bump debhelper from old 11 to 12.
  * Set upstream metadata fields: Repository.
  * Drop versioned dependency satisfied in (old)stable
  * Update Standards-Version to 4.4.1
  * Add self to Uploaders

 -- David Prévot <email address hidden>  Sat, 26 Oct 2019 23:51:49 -1000

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

Focal: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
php-psr-log_1.1.1-1.dsc 1.7 KiB e623b8a34a21d1b2b36490ea21acb8acbb63352327dcd2c3583e5dc6422f96a5
php-psr-log_1.1.1.orig.tar.gz 5.6 KiB ad0df148bdf4a24fd5e28b4f06188762dc041edb804e0a69bf0ffad0a1597724
php-psr-log_1.1.1-1.debian.tar.xz 3.2 KiB fc326e17dbfc88ce81c8a90271105b4aa861e06d5c2785af8d2d4049eb713c6c

Available diffs

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.