mead-steve/mono-snag

Bugsnag integration for monolog. An abstract handler that sends messages to Bugsnag

v4.1.0 2021-03-18 11:40 UTC

This package is auto-updated.

Last update: 2024-04-18 19:04:42 UTC


README

Test PHP 7 & 8 Latest Stable Version License Monthly Downloads

Monolog Handler connection to Bugsnag

Installation

Via Composer using

composer require mead-steve/mono-snag

Usage

A handler is provided that wraps up a Bugsnag client. By default, the handler will grab anything at Logger::ERROR and above and send it to Bugsnag.

$logger  = new Monolog\Logger("Example");

$bugsnagClient = new Bugsnag\Client('YOUR-BUGSNAG-API-KEY-HERE');
//... bugsnag specific config goes here.
$bugsnagHandler = new \MeadSteve\MonoSnag\BugsnagHandler($bugsnagClient);

$logger->pushHandler($bugsnagHandler);

// The following error will get sent automatically to Bugsnag
$logger->addError("oh no!", array('exception' => new \Exception("ohnoception")));