wiebekn/dawilog-php

client for dawilog

v0.0.19 2022-03-27 16:21 UTC

README

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"