metalguardian/yii-ratchet-error-handler

extensionloggerratcheterrorhandler

Ratchet Error Handler

Error handler with handling php errors, exceptions,. fatal errors

Installation

The preferred way to install this extension is through composer.

Either run

php composer.phar require metalguardian/yii-ratchet-error-handler "dev-master"

or add

"metalguardian/yii-ratchet-error-handler": "dev-master"

to the require section of your composer.json file.

Usage

Once the extension is installed, simply use it in your configuration file :

array(
    'preload' => array(
        // ...
        'rollbar',
        // ...
    ),
    'components' => array(
        'rollbar' => array(
            'class' => '\metalguardian\rollbar\Component',
            'access_token' => 'ACCESS_TOKEN',
            'environment' => 'production',
            'included_errno' => E_ALL,
        ),
        'errorHandler' => array(
            'class' => '\metalguardian\rollbar\ErrorHandler',
            'ignoreException' => function ($exception) {
                /** @var \CHttpException $exception */
                // ignore 404 exceptions
                if ($exception instanceof \CHttpException && $exception->statusCode == 404) {
                    return true;
                }
                // ignore 403 exceptions
                if ($exception instanceof \CHttpException && $exception->statusCode == 403) {
                    return true;
                }
                // other ignores

                return false;
            },
        ),

        ),
    // ...
)

Statistics

Downloads
GitHub Stars
GitHub Forks

Releases

No stable releases.

Comments



No stable releases.



MIT license
Stats
0 github stars & 0 github forks
0 downloads in the last day
0 downloads in the last 30 days
31 total downloads