laravel-logger-discord-channel maintained by lexor
Description
A Discord based Monolog driver for Laravel
Authors
Last update
2018/09/16 20:29
(dev-master)
License
Downloads
14
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
],
],