restray/discordlogger

:description

Downloads

47

Stars

0

Version

1.9

DiscordLogger

Latest Version on Packagist Total Downloads StyleCI

Package to auto-send the logs to a Discord server.

Installation

Via Composer

$ composer require restray/discordlogger

Publish the configuration :

php artisan vendor:publish --provider=Restray\\DiscordLogger\\Providers\\MonologDiscordServiceProvider

Add the driver to logging file :

'channels' => [
    ...,
    'discord' => [
        'driver' => 'monolog',
        'handler' => Restray\DiscordLogger\Handler\DiscordHandler::class
    ],

    'discord-single' => [
        'driver' => 'stack',
        'channels' => ['single', 'discord'],
    ],
    ...,
],

Usage

Use the Driver on all of your project :

In your .env :

LOG_CHANNEL=discord-single

Change log

Please see the changelog for more information on what has changed recently.

Testing

$ composer test

Contributing

Please see contributing.md for details and a todolist.

Security

If you discover any security related issues, please email [email protected] instead of using the issue tracker.

Credits

License

Apache2.0. Please see the license file for more information.

restray

Author

restray