mirror of
https://github.com/grokability/snipe-it.git
synced 2026-03-12 17:52:00 +08:00
WIP: working on better Rollbar filtering in prod
This commit is contained in:
@@ -113,6 +113,13 @@ $config = [
|
||||
'handler' => \Rollbar\Laravel\MonologHandler::class,
|
||||
'access_token' => env('ROLLBAR_TOKEN'),
|
||||
'level' => env('ROLLBAR_LEVEL', 'error'),
|
||||
'check_ignore' => function($isUncaught, $args, $payload) {
|
||||
if (method_exists($args, 'getMessage') && strstr($args->getMessage(), 'Declaration of')) {
|
||||
return true;
|
||||
}
|
||||
|
||||
return false;
|
||||
},
|
||||
],
|
||||
],
|
||||
|
||||
|
||||
Reference in New Issue
Block a user