Looking to hire Laravel developers? Try LaraJobs

laravel-logger-discord-channel maintained by lexor

Description
A Discord based Monolog driver for Laravel
Last update
2018/09/16 20:29 (dev-master)
License
Links
Downloads
14

Comments
comments powered by Disqus

Laravel Logger - Discord Channel

A Discord based Monolog driver for Laravel

Install

composer require lexor/laravel-logger-discord-channel:dev-master

Usage

Add the new driver type in your config/logging.php configuration

'channels' => [
    'discord' => [
        'driver' => 'custom',
        'via' => Lexor\LoggerDiscordChannel\DiscordLogger::class,
        'webhook' => 'https://discordapp.com/api/webhooks/.....',
        'level' => 'DEBUG',
        'role_id' => null, // role to tag in the error
    ],
],