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

Changelog

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

  * Team upload

  [ Mponos George ]
  * Create a new TestLogger

  [ David Prévot ]
  * Move repository to salsa.d.o
  * Use debhelper-compat 11
  * Drop get-orig-source target
  * Use https in Format
  * Update Homepage
  * Update Standards-Version to 4.2.1

 -- David Prévot <email address hidden>  Sun, 25 Nov 2018 08:39:47 -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

Disco: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
php-psr-log_1.1.0-1.dsc 1.6 KiB e458379027bcbd5dde66ca08fdd7f1f1e4d4ee9cdec82a55bde5d6267ae5b0e4
php-psr-log_1.1.0.orig.tar.gz 5.6 KiB 5c0e1dfe61c203c6635ce6ab47da78a2314b38048c5d94caab668c9c8ac24577
php-psr-log_1.1.0-1.debian.tar.xz 3.6 KiB e62681396521d1b00255629f4a0baf3c479b1aa7b86c1c9567154cdbb2ae2ea8

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.