Skip to content

Latest commit

 

History

History
66 lines (42 loc) · 1.95 KB

README.md

File metadata and controls

66 lines (42 loc) · 1.95 KB

Monolog Fluent Handler

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.