php-extended / php-multiple-logger
A psr-3 compliant logger to dispatch logs to multiple psr-3 loggers
Package info
gitlab.com/php-extended/php-multiple-logger
pkg:composer/php-extended/php-multiple-logger
9.0.7
2026-05-20 00:42 UTC
This package is auto-updated.
Last update: 2026-05-19 22:42:33 UTC
README
A psr-3 compliant logger to dispatch logs to multiple psr-3 loggers
Installation
The installation of this library is made via composer and the autoloading of all classes of this library is made through their autoloader.
- Download
composer.pharfrom their website. - Then run the following command to install this library as dependency :
php composer.phar php-extended/php-multiple-logger ^9
Basic Usage
This library gives a very basic psr-3 logger. Use it as described in the docs of the psr-3 : https://www.php-fig.org/psr/psr-3/
use PhpExtended\Logger\MultipleLogger;
$logger = new MultipleLogger(array('<logger1>', '<logger2>'));
$logger->error('Nah.');
// dispatch $logger1->error('Nah.');
// dispatch $logger2->error('Nah.');
License
MIT (See license file).