slashtrace/slashtrace-bugsnag

Bugsnag handler for SlashTrace

1.0.0 2018-09-26 17:02 UTC

This package is auto-updated.

Last update: 2024-04-27 05:13:43 UTC


README

This is the Bugsnag handler for SlashTrace. Use it to send your errors and exceptions to your Sentry account.

Usage

  1. Install using Composer:

    composer require slashtrace/slashtrace-bugsnag
    
  2. Hook it into SlashTrace:

    use SlashTrace\SlashTrace;
    use SlashTrace\Bugsnag\BugsnagHandler;
    
    $handler = new BugsnagHandler("Your Bugsnag API key");
     
    $slashtrace = new SlashTrace();
    $slashtrace->addHandler($handler);

    Alternatively, you can pass in a pre-configured Bugsnag client when you instantiate the handler:

    $bugsnag = Bugsnag\Client::make('Your Bugsnag API key');
    $handler = new BugsnagHandler($bugsnag);
    
    $slashtrace->addHandler($handler);
    

Read the SlashTrace docs to see how to capture errors and exceptions, and how to attach additional data to your events.