pushProcessor() pushProcessor(callable $callback) : \Monolog\Handler\HandlerInterface {@inheritDoc} Parameters callable $callback Returns \Monolog\Handler\HandlerInterface —
setFormatter() setFormatter(\Monolog\Formatter\FormatterInterface $formatter) : \Monolog\Handler\HandlerInterface {@inheritDoc} Parameters \Monolog\Formatter\FormatterInterface $formatter Returns \Monolog\Handler\HandlerInterface —
getFormatter() getFormatter() : \Monolog\Formatter\FormatterInterface {@inheritDoc} Returns \Monolog\Formatter\FormatterInterface —
__construct() __construct(int|string $level = Logger::DEBUG, bool $bubble = true) : mixed Parameters int|string $level The minimum logging level at which this handler will be triggered bool $bubble Whether the messages that are handled can bubble up the stack or not Returns mixed —
setLevel() setLevel(mixed $level) : self Sets minimum logging level at which this handler will be triggered. Parameters mixed $level Returns self —
getLevel() getLevel() : int Gets minimum logging level at which this handler will be triggered. Returns int —
setBubble() setBubble(bool $bubble) : self Sets the bubbling behavior. Parameters bool $bubble true means that this handler allows bubbling. false means that bubbling is not permitted. Returns self —
getBubble() getBubble() : bool Gets the bubbling behavior. Returns bool — true means that this handler allows bubbling. false means that bubbling is not permitted.
write() write(array $record) : void Writes the record down to the log of the implementing handler Parameters array $record
processRecord() processRecord(array $record) : array Processes a record. Parameters array $record Returns array —
getDefaultFormatter() getDefaultFormatter() : \Monolog\Formatter\FormatterInterface Gets the default formatter. Returns \Monolog\Formatter\FormatterInterface —
send() send(string $content, array $records) : void Send a mail with the given content Parameters string $content formatted email body to be sent array $records the array of log records that formed this content
getHighestRecord() getHighestRecord(array $records) : array Parameters array $records Returns array —