Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/nfacha/yii2-discord-log-target


https://github.com/nfacha/yii2-discord-log-target

Last synced: 21 days ago
JSON representation

Awesome Lists containing this project

README

        

Add the following to your application components:

```php
'log' => [
'traceLevel' => YII_DEBUG ? 3 : 0,
'targets' => [
[
'class' => DiscordLogTarget::class,
'webhookUrl' => 'https://discordapp.com/api/webhooks/>',
'levels' => [ 'error' ],
'exportInterval' => 1,
'maskVars' => [ '_SERVER', '_COOKIE' ],
'except' => [
'yii\web\HttpException:404',
'yii\web\HttpException:400',
'yii\web\HttpException:403',
'yii\i18n\*',
],
],
],

```