1
0
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:
Jordi Boggiano
2011-02-21 20:38:18 +01:00
parent 8d27400122
commit a426ce2815
5 changed files with 93 additions and 52 deletions

View File

@@ -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);