hpsweb/bugphix-laravel-sdk

Capture and monitor detailed error logs with nice dashboard and UI.

dev-master 2020-05-16 20:34 UTC

This package is auto-updated.

Last update: 2024-04-17 05:01:24 UTC


README

Capture and monitor detailed error logs with nice dashboard and UI



Requirements

Installation

$ composer require hpsweb/bugphix-laravel-sdk

Application usage

edit: /app/Exceptions/Handler.php

public function report(Exception $exception)
{
    if (app()->bound('bugphix') && $this->shouldReport($exception)) {
        app('bugphix')->catchError($exception);
    }

    parent::report($exception);
}

Test Command

$ php artisan bugphix:test