mirror of
https://github.com/Seldaek/monolog.git
synced 2025-10-23 01:26:11 +02:00
Added a Processor stack to the Logger class, added getHandler() to check if any handler is going to handle the message before processing it, handlers are now calling their parent in a chain
This commit is contained in:
@@ -13,16 +13,10 @@ namespace Monolog\Handler;
|
||||
|
||||
interface HandlerInterface
|
||||
{
|
||||
public function getHandler($message);
|
||||
|
||||
public function handle($message);
|
||||
|
||||
public function setLevel($level);
|
||||
|
||||
public function getLevel();
|
||||
|
||||
public function setBubble($bubble);
|
||||
|
||||
public function getBubble();
|
||||
|
||||
public function getParent();
|
||||
|
||||
public function setParent(HandlerInterface $parent);
|
||||
|
Reference in New Issue
Block a user