elementary / logger-pool
The pool of different loggers wich impliments \PSR\Log\LoggerInterface
1.0.1
2018-03-19 11:25 UTC
Requires
- php: >=5.6
- elementary/singleton: ^1.1
- psr/log: ^1.0
Requires (Dev)
- phpunit/phpunit: ^5
- satooshi/php-coveralls: ^2.0
Suggests
- elementary/graylog-udp: The wrapper to send log-message to a Graylog server using the UDP transport
This package is not auto-updated.
Last update: 2024-11-10 06:22:21 UTC
README
Installation
The preferred way to install this extension is through composer and then run
composer require elementary/logger-pool
Usage
use elementary\logger\pool\LoggerPool; use elementary\logger\traits\LoggerGetInterface; use elementary\logger\traits\LoggerTrait; use elementary\logger\graylog\udp\GraylogUdp; use Psr\Log\LoggerAwareInterface; use Psr\Log\NullLogger; class Example implements LoggerGetInterface, LoggerAwareInterface { use LoggerTrait; public function doSomeThing() { // Do some thing $this->getLogger()->debug('do some thing'); // Runtime error should be logged and monitored $this->getLogger()->error('Attantion! The error was happened!'); } } LoggerPool::me()->setLogger(new NullLogger()); LoggerPool::me()->setLogger(new GraylogUdp('test', 'localhost', 12201), 'warning'); $ex = new Example(); $ex->setLogger(LoggerPool::me()); $ex->doSomeThing();
Testing and Code coverage
Unit Tests are located in tests
directory.
You can run your tests and collect coverage with the following command:
vendor/bin/phpunit
Result of coverage will be output into the tests/output
directory.
License
For license information check the LICENSE-file.