easyconn / yii1-sentry
Sentry组件和LogRoute for Yii1
1.0.2
2021-06-03 16:28 UTC
Requires
- php: >=5.5.0
- easyconn/sentry: ^1.8
- yiisoft/yii: ~1.1.15
Requires (Dev)
- phpunit/phpunit: ~4.5
README
Sentry组件和日志路由器,适用于Yii框架。
要求
下载
composer require intersvyaz/yii-sentry
配置
main.php
... 'preload' => [ ... 'sentry', ], ... 'components' => [ 'sentry' => [ 'class' => Intersvyaz\YiiSentry\SentryComponent::class, 'dsn' => 'https://X1:X2@host.com/2', 'useRavenJs' => true, 'ravenJsPlugins' => ['jquery'], 'enabled' => !YII_DEBUG, ], ... 'log' => [ 'class' => 'CLogRouter', 'routes' => [ ... [ 'class' => Intersvyaz\YiiSentry\SentryLogRoute::class, 'levels' => 'error, warning', 'except' => 'exception.CHttpException.404, exception.CHttpException.400, exception.CHttpException.403', ], ], ], ], ...