PHP code example of homeapp / monolog-sentry-handler
1. Go to this page and download the library: Download homeapp/monolog-sentry-handler library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
homeapp / monolog-sentry-handler example snippets
use Homeapp\MonologSentryHandler\SentryHandler;
use Sentry\State\Hub;
$sentryHandler = new SentryHandler(Hub::getCurrent());
/** @var $logger Monolog\Logger */
$logger->pushHandler($sentryHandler);
// Add records to the log
$logger->debug('Foo');
$logger->error('Bar');