Skip to content

Latest commit

 

History

History
57 lines (48 loc) · 1.13 KB

File metadata and controls

57 lines (48 loc) · 1.13 KB

dawilog-php

install

composer require wiebekn/dawilog-php

add to .env

DAWILOG_DSN=

config/app.php

Dawilog\Laravel\ServiceProvider::class,

app/Exceptions/Handler.php (Laravel 8)

    public function register()
    {
        $this->reportable(function (Throwable $e) {
            if (app()->bound('dawilog') && $this->shouldReport($e)) {
                app('dawilog')->sendException($e);
            }
        });
    }

app/Exceptions/Handler.php (Laravel 7)

    public function report(Throwable $exception)
    {
        if (app()->bound('dawilog') && $this->shouldReport($exception)) {
            app('dawilog')->sendException($exception);
        }

        parent::report($exception);
    }

app/Exceptions/Handler.php (Laravel 5 & 6)

    public function report(Exception $exception)
    {
        if ($this->shouldReport($exception) && app()->bound('dawilog')) {
            app('dawilog')->sendException($exception);
        }
    
        parent::report($exception);
    }

config/dawilog.php

php artisan vendor:publish --provider="Dawilog\Laravel\ServiceProvider" --tag="config"