otobank/monolog-fluent-handler

1.0.1 2015-06-10 09:20 UTC

This package is auto-updated.

Last update: 2024-03-29 03:19:07 UTC


README

Latest Stable Version Total Downloads Latest Unstable Version License Build Status Coverage Status Dependency Status

Monolog handler for Fluent.

Usage

<?php

use Monolog\Logger;
use Otobank\Monolog\Handler\FluentHandler;

$logger = new Logger('name');
$logger->pushHandler(new FluentHandler());

$logger->alert('Something wrong.');

Symfony

example) app/config/config.yml

services:
    acme.monolog.fluent_handler:
        class: Otobank\Monolog\Handler\FluentHandler
        arguments:
            - "%acme.fluent.uri%"

monolog:
    handlers:
        fluent:
            type: service
            id: acme.monolog.fluent_handler
            level: debug

Installation

composer require otobank/monolog-fluent-handler

Author

SATO Keisuke - ksato@otobank.co.jp - https://github.com/riaf

License

Licensed under the MIT License - see the LICENSE file for details

OTOBANK Inc.