pinfirestudios / yii1-bugsnag
Yii1 log target and ErrorHandler for Bugsnag
v1.0.12
2025-02-03 07:59 UTC
Requires
- bugsnag/bugsnag: 2.*
- yiisoft/yii: ^1.1
Suggests
- bower-asset/bugsnag: Needed to enable Bugsnag JS logging. See README.md for installation instructions.
README
To use, configure as such:
$config = [
'components' => [
'errorHandler' => [
'class' => 'pinfirestudios\yii1bugsnag\BugsnagErrorHandler'
],
'bugsnag' => [
'class' => 'pinfirestudios\yii1bugsnag\BugsnagComponent', // Or your override of such
'bugsnag_api_key' => 'YOUR API KEY',
'notifyReleaseStages' => ['staging', 'production'],
],
'log' => [
'class' => 'CLogRouter',
'routes' => [
[
'class' => 'pinfirestudios\yii1bugsnag\BugsnagLogTarget',
'levels' => 'error, warning, info, trace',
]
],
],
],
];
If you would like to use Bugsnag's javascript on your site, you'll need to install bower-asset/bugsnag:
-
Add the following to your project's composer.json
"repositories": [ { "type": "composer", "url": "https://asset-packagist.org" } ]
-
Require bower-asset/bugsnag
composer require bower-asset/bugsnag
-
Once you have it installed, add the BugsnagJsWidget to your default layout. This will automatically register Bugsnag's javascript to the page. Default version is 3.
$this->widget(\pinfirestudios\yii1bugsnag\BugsnagJsWidget::class);
If you need to use version 2 of Bugsnag's javascript, you can specify the version in your widget configuration.