gpt4 book ai didi

php - symfony 4 - bugsnag - 忽略特定的异常类型

转载 作者:可可西里 更新时间:2023-10-31 23:26:49 25 4
gpt4 key购买 nike

我使用 bugsnag 来记录我们应用程序的错误。该应用程序基于 symfony 4 构建,我有一个自定义监听器,可以捕获异常并处理其中的一些异常。我需要的是告诉 bugsnag 忽略我手动处理的异常(不需要记录它们,因为它们已经被处理过)。

我的自定义监听器的优先级高于 bugsnag 监听器(因此先运行)。问题是停止事件传播会破坏其他东西(例如,安全监听器不再运行,因为默认情况下它的优先级低于 bugsnag)。

下面是我的监听器代码(好吧......它的相关部分):

class ExceptionListener
{

protected $router;
private $mailerService;
private $tokenStorage;
private $request;
private $em;
/**
* @var UtilsService
*/
private $utilsService;

public function __construct(Router $router, MailerService $mailerService, TokenStorageInterface $tokenStorage, RequestStack $request, EntityManagerInterface $em, UtilsService $utilsService)
{
$this->router = $router;
$this->mailerService = $mailerService;
$this->tokenStorage = $tokenStorage;
$this->request = $request;
$this->em = $em;
$this->utilsService = $utilsService;
}

public function onKernelException(ExceptionEvent $event)
{
$exception = $event->getException();
$message = $exception->getMessage();

switch (true) {
case $exception instanceof NotFoundHttpException:
// Redirect somewhere
break;
case $exception instanceof CustomException:
// Do some stuff
$event->stopPropagation(); // This does what I need (stops propagation to bugsnag listener) but breaks other things so is not a solution (since it stops propagation to everything).
break;
}

return false;
}
}

我需要的很简单...如果抛出的异常是 CustomException 的一个实例,我希望它不会被发送到 bugsnag。

我看到的 2 种可能的解决方案是(欢迎使用其他解决方案):

最佳答案

您可以按照此处所述实现回调并检查报告对象: https://docs.bugsnag.com/platforms/php/symfony/configuration-options/#callbacks

只需从回调中返回 false 即可防止向 Bugsnag 报告。

关于php - symfony 4 - bugsnag - 忽略特定的异常类型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56600038/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com