handleBatch() handleBatch(array $records) : void Handles a set of records at once. Parameters array $records The records to handle (an array of record arrays)
__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.