You are here

chromephp.inc in Monolog 7

Same filename and directory in other branches
  1. 6 handlers/chromephp.inc

Handler include for ChromePHPHandler.

File

handlers/chromephp.inc
View source
<?php

/**
 * @file
 * Handler include for ChromePHPHandler.
 */
use Monolog\Handler\ChromePHPHandler;

/**
 * Monolog loader callback; Loads a ChromePHPHandler handler.
 *
 * @return HandlerInterface
 */
function monolog_chromephp_handler_loader($options) {
  return new ChromePHPHandler($options['level'], $options['bubble']);
}

Functions

Namesort descending Description
monolog_chromephp_handler_loader Monolog loader callback; Loads a ChromePHPHandler handler.