Skip to content

Instantly share code, notes, and snippets.

@jesseobrien
Created September 3, 2014 00:19
Show Gist options
  • Select an option

  • Save jesseobrien/bb05216a4d866d3d766a to your computer and use it in GitHub Desktop.

Select an option

Save jesseobrien/bb05216a4d866d3d766a to your computer and use it in GitHub Desktop.
Sentry laravel hook
App::error(function(Exception $exception, $code)
{
// Sentry exception logging
$client = new Raven_Client(Config::get('app.sentry-key'));
$client->captureException($exception);
Log::error($exception);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment