ut8ia / yii2-slacklog
yii2 slack logging
dev-master
2019-03-27 17:54 UTC
Requires
- php: >=5.4.0
- yiisoft/yii2: >=2.0.0
- yiisoft/yii2-httpclient: ^2.0.0
This package is auto-updated.
Last update: 2024-12-10 21:51:41 UTC
README
installing
add into composer.json
"ut8ia/yii2-slacklog":"*"
configuration
'components' => [
'log' => [
'targets'=> [
'class' => SlackTarget::class,
'enabled' => ('prod' === YII_ENV),
'urlWebHook' => "https://hooks.slack.com/services/T00000/B16LFUKCP/19BvNB345345345345345",
'emoji' => ':glitch_crab:',
'categories' => ['my_category','second_category'],
'levels' => ['error', 'info'],
'except' => ['yii\web\HttpException:40*'],
'logVars' => [' '],
'prefix' => [SetLogPrefix::class, 'setSlackLogPrefix'],
]
],
],