php-extended / php-multiple-logger
A psr-3 compliant logger to dispatch logs to multiple psr-3 loggers
6.0.4
2023-08-21 17:54 UTC
Requires
- php: >=7.4
- php-extended/polyfill-php80-stringable: ^1.2
- psr/log: ^1
Requires (Dev)
Provides
- psr/log-implementation: 1.0.0
This package is auto-updated.
Last update: 2023-11-21 18:29:38 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.phar
from their website. - Then run the following command to install this library as dependency :
php composer.phar php-extended/php-multiple-logger ^6
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).