public static function handleException(Exception $exception)
 {
     // Call Bugsnag
     Bugsnag::exceptionHandler($exception);
     // Fall back to Cake..
     return parent::handleException($exception);
 }
Example #2
0
 /**
  * {@inheritdoc}
  */
 public static function exceptionHandler($exception)
 {
     parent::exceptionHandler($exception);
     if (Kohana::$errors === true) {
         Kohana_Exception::handler($exception);
     }
 }
Example #3
0
<?php

use lithium\core\Libraries;
use lithium\core\Environment;
use lithium\security\Auth;
$_config = Libraries::get('li3_bugsnag');
if (isset($_config['apiKey']) && !empty($_config['apiKey'])) {
    \Bugsnag::register($_config['apiKey']);
    \Bugsnag::setReleaseStage(Environment::get());
    \Bugsnag::setProjectRoot(LITHIUM_APP_PATH);
    set_error_handler('Bugsnag::errorHandler');
    /**
     * This placeholder is used only to retrieve last defined handler
     * @var callable
     */
    $placeholder = set_exception_handler(null);
    set_exception_handler(function ($exception) use($placeholder) {
        if ($exception->getCode() !== 404) {
            \Bugsnag::exceptionHandler($exception);
        }
        if ($placeholder) {
            call_user_func($placeholder, $exception);
        }
    });
}
unset($_config);