You are here

stream.inc in Monolog 6

Same filename and directory in other branches
  1. 7 handlers/stream.inc

Handler include for StreamHandler include.

File

handlers/stream.inc
View source
<?php

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

/**
 * Monolog loader callback; Loads a StreamHandler handler.
 *
 * @return HandlerInterface
 */
function monolog_stream_handler_loader($options) {
  $directory = dirname($options['filepath']);
  monolog_prepare_log_dir($directory);
  return new StreamHandler($options['filepath'], $options['level'], $options['bubble']);
}

/**
 * Monolog settings form; Settings for the StreamHandler handler.
 */
function monolog_stream_handler_settings(&$form, &$form_state, $profile, array $handler) {
  $form['filepath'] = array(
    '#title' => 'Log file path',
    '#type' => 'textfield',
    '#default_value' => $handler['filepath'],
    '#description' => t('The path or URI that the log file will be written to.'),
  );
}

Functions

Namesort descending Description
monolog_stream_handler_loader Monolog loader callback; Loads a StreamHandler handler.
monolog_stream_handler_settings Monolog settings form; Settings for the StreamHandler handler.