Giter VIP home page Giter VIP logo

Comments (4)

stayallive avatar stayallive commented on May 23, 2024 2

Create the following file:

app/config/packages/sentry/sentry-laravel/local/config.php

With these contents:

<?php

return array(
    'dsn' => '',
);

Event in the package folders you can use environment folders to overwrite configuration.

No need for custom filtering :) Although the App::error() filter for ModelNotFoundException is a smart one, since that is missing from <5 by default.

from sentry-laravel.

garygreen avatar garygreen commented on May 23, 2024

This is really only applicable for 4.2 installs cos it's easy enough to do in your report method in Laravel 5.

What I've done to get around this is:

$this->app->resolving('sentry', function($client) {
    if ($this->app->environment('local')) {
        $client->server = null;
    }
    return $client;
});

Sentry won't report anything where there isn't a server set. Not pretty, but works.

from sentry-laravel.

garygreen avatar garygreen commented on May 23, 2024

Further to this I've found this is a better way of doing it on 4.2 if you want to add exceptions to what get's reported:

put inside app\start\global.php

App::error(function(Exception $exception, $code)
{
	$doNotLog = [
		'Symfony\Component\HttpKernel\Exception\NotFoundHttpException',
		'Illuminate\Database\Eloquent\ModelNotFoundException'
	];

	$shouldLog = ! in_array(get_class($exception), $doNotLog);

	if ($shouldLog) {
		Log::error($exception);
	}

	if (! $shouldLog || app()->environment('local')) {
		app('sentry')->server = null;
	}
});

from sentry-laravel.

alkhachatryan avatar alkhachatryan commented on May 23, 2024

In this method: \App\Exceptions\Handler::report

Change this code:

/**
     * Report or log an exception.
     *
     * @param  \Throwable  $exception
     * @return void
     *
     * @throws \Exception
     */
    public function report(Throwable $exception)
    {
        if (app()->bound('sentry') && $this->shouldReport($exception)){
            app('sentry')->captureException($exception);
        }

        parent::report($exception);
    }

With this one:

/**
     * Report or log an exception.
     *
     * @param  \Throwable  $exception
     * @return void
     *
     * @throws \Exception
     */
    public function report(Throwable $exception)
    {
        if (app()->bound('sentry') && $this->shouldReport($exception) && config('app.env') !== 'local'){
            app('sentry')->captureException($exception);
        }

        parent::report($exception);
    }

from sentry-laravel.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.