如何在 Laravel 队列中运行哨兵跟踪日志?

时间:2021-02-13 14:36:03

标签: php laravel lumen jobs

我需要在队列中运行以下行。

   if (app()->bound('sentry') && $this->shouldReport($e)) {
        app('sentry')->captureException($e);
    }

但是当我在作业类中运行 'app('sentry')->captureException($e)' 时,我看到了这个错误

Uncaught Exception: Serialization of 'Closure' is not allowed in /var/www/html/mini-wallet/vendor/illuminate/queue/Queue.php:157

怎么?有什么解决办法?

0 个答案:

没有答案