php-extended/php-multiple-logger

A psr-3 compliant logger to dispatch logs to multiple psr-3 loggers

7.0.2 2024-04-08 18:49 UTC

README

A psr-3 compliant logger to dispatch logs to multiple psr-3 loggers

coverage build status

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 ^7

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).