0

我已经设置了这样的电子邮件工作:

dispatch(new NewUserEmail($newUser->email, $newUser->username));

我的工作文件如下所示:

<?php

namespace App\Jobs;

use Illuminate\Bus\Queueable;
use Illuminate\Queue\SerializesModels;
use Illuminate\Queue\InteractsWithQueue;
use Illuminate\Contracts\Queue\ShouldQueue;
use Illuminate\Foundation\Bus\Dispatchable;
use Illuminate\Support\Facades\Log;
use App\Mail\NewUser;
use Mail;

class NewUserEmail implements ShouldQueue
{
    use Dispatchable, InteractsWithQueue, Queueable, SerializesModels;

    protected $email;
    protected $username;
    public $tries = 5;

    /**
     * Create a new job instance.
     */
    public function __construct($email, $username)
    {
        $this->email = $email;
        $this->username = $username;
    }

    /**
     * Execute the job.
     */
    public function handle()
    {
        try {
            Mail::to($this->email)->send(new NewUsedfr($this->username));
        } catch (\Exception $e) {
            Log::error('NewUserEmailJob failed NewUser');
            Log::error('NewUserEmailJob log: '.$e);
            throw new \Exception($e);
        }
    }
}

但是我故意拼错了NewUsedfr应该是NewUser 为了尝试触发异常的邮件文件。

但是当我运行该作业时,我可以看到该作业在 Horizo​​n 中完成而没有被标记为失败。看着望远镜,我在日志选项卡中看不到任何异常或错误。

所以我手动查看了我的 storage/logs 文件夹,我看到了这一行:

Class 'App\Jobs\NewUsedfr' not found {"exception":"[object]

那么为什么我的工作没有在地平线上失败,为什么上面的错误没有在望远镜中显示?望远镜没有显示存储/日志文件夹中的错误似乎有点奇怪

4

1 回答 1

1

不要抛出新异常,而是重新抛出原始异常:

throw $e; 
于 2019-11-26T11:08:55.680 回答