Skip to content

kloostermanw/dawilog-php

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

55 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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"

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages