function monolog_chromephp_handler_loader in Monolog 6
Same name and namespace in other branches
- 7 handlers/chromephp.inc \monolog_chromephp_handler_loader()
Monolog loader callback; Loads a ChromePHPHandler handler.
Return value
HandlerInterface
File
- handlers/
chromephp.inc, line 15 - Handler include for ChromePHPHandler.
Code
function monolog_chromephp_handler_loader($options) {
return new ChromePHPHandler($options['level'], $options['bubble']);
}