nbah1990/laravel-logger-extension

Package contains additional log drivers and notification channels

v1.0.7 2020-11-13 06:49 UTC

This package is auto-updated.

Last update: 2024-04-13 15:34:11 UTC


README

Package contains:

  • laravel/lumen + monolog -> fluentd integration;
  • guzzle requests log middleware;

To install the package use:

composer require nbah1990/laravel-logger-extension

How to use fluentd integration:

  1. Add to the logging.php config a new channel:
        'fluentd' => [
            'driver' => 'monolog',
            'handler' => \LaravelLoggerExtension\Monolog\Handler\FluentdHandler::class,
            'level' => 'debug',
            'handler_with' => [
                'host' => env('FLUENTD_HOST'),
                'port' => env('FLUENTD_PORT')
            ],
        ]

How to use guzzle/http log integration:

  1. Create or publish the config laravel-logger-extension.php(you can find default config here vendor/nbah1990/laravel-logger-extension/src/LaravelLoggerExtension/config/laravel-logger-extension.php. By default, it looks like:
return [
    // pass true to enable log of all guzzle requests
    'guzzle_log_integration_enabled' => false,

    // guzzle client config with additions for logger
    'guzzle_log_integration' => [
        // you can add other guzzle client settings here

        // you can set your own handler for guzzle client
        // 'handler' => new \GuzzleHttp\HandlerStack(),

        // pass channels that should be used to write logs, they should be defined in the 'logging.php' configuration
        'log_channels' => [

        ],

        // format of the log message
        'log_formatter' => new \GuzzleHttp\MessageFormatter(
            '{method}({code}) - {uri} - {req_body} - {res_body} - {req_headers} - {error}'
        ),
        
        //by default all responses will be wrote with this level
        'log_default_level' => Psr\Log\LogLevel::DEBUG
    ]
];