mirror of
https://github.com/Seldaek/monolog.git
synced 2025-10-23 01:26:11 +02:00
Add getters for handlers/processors, fixes #363
This commit is contained in:
@@ -172,6 +172,14 @@ class Logger implements LoggerInterface
|
|||||||
return array_shift($this->handlers);
|
return array_shift($this->handlers);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @return HandlerInterface[]
|
||||||
|
*/
|
||||||
|
public function getHandlers()
|
||||||
|
{
|
||||||
|
return $this->handlers;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Adds a processor on to the stack.
|
* Adds a processor on to the stack.
|
||||||
*
|
*
|
||||||
@@ -199,6 +207,14 @@ class Logger implements LoggerInterface
|
|||||||
return array_shift($this->processors);
|
return array_shift($this->processors);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @return callable[]
|
||||||
|
*/
|
||||||
|
public function getProcessors()
|
||||||
|
{
|
||||||
|
return $this->processors;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Adds a log record.
|
* Adds a log record.
|
||||||
*
|
*
|
||||||
|
Reference in New Issue
Block a user