Looking to hire Laravel developers? Try LaraJobs

laravel-logger-discord-channel maintained by kabbouchi

Description
A Discord based Monolog driver for Laravel
Last update
2020/09/09 08:59 (dev-master)
License
Links
Downloads
9 463

Comments
comments powered by Disqus

Laravel Logger - Discord Channel

A Discord based Monolog driver for Laravel

Install

composer require kabbouchi/laravel-logger-discord-channel

Usage

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

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

Note

You may need to clear cache after installation if you get laravel.EMERGENCY: Unable to create configured logger. ... Log [discord] is not defined. with

php artisan config:clear