0

我有以下控制器:

namespace App\Controllers;

use App\Jobs\MyJob;

class MyController
{
  public function dispatchJob(int $user_id)
  {
     MyJob::dispatch($user_id);
  }

}

我有以下工作:

namespace App\Jobs;

use Illuminate\Bus\Queueable;
use Illuminate\Contracts\Queue\ShouldQueue;
use Illuminate\Foundation\Bus\Dispatchable;
use Illuminate\Queue\InteractsWithQueue;


use App\Model\Etable\User;

class MyJob implements ShouldQueue
{
    use Dispatchable;
    use InteractsWithQueue;
    use Queueable;

    /**
     * @var int
     */
    private $user_id;


    /**
     * @param User   $user          The user that has opted or deopted for newsletter consent
     */
    public function __construct(int $user_id)
    {
        $this->user_id       = $user_id;
    }

    public function handle(): void
    {
        //Logic Here
    }
}

而durirt开发我看是否访问到dispatchJob控制器方法中指示的路由会调度工作。但我注意到我的工作是继续派遣:

[2020-03-26 17:18:04][17834] Processing: App\Jobs\MyJob
[2020-03-26 17:18:04][17835] Processing: App\Jobs\MyJob
[2020-03-26 17:18:05][17836] Processing: App\Jobs\MyJob
[2020-03-26 17:18:05][17837] Processing: App\Jobs\MyJob
[2020-03-26 17:18:06][17838] Processing: App\Jobs\MyJob
[2020-03-26 17:18:07][17839] Processing: App\Jobs\MyJob
[2020-03-26 17:18:07][17840] Processing: App\Jobs\MyJob
[2020-03-26 17:18:08][17841] Processing: App\Jobs\MyJob
[2020-03-26 17:18:08][17842] Processing: App\Jobs\MyJob
[2020-03-26 17:18:09][17843] Processing: App\Jobs\MyJob
[2020-03-26 17:18:09][17844] Processing: App\Jobs\MyJob
[2020-03-26 17:18:10][17845] Processing: App\Jobs\MyJob
[2020-03-26 17:18:11][17846] Processing: App\Jobs\MyJob
[2020-03-26 17:18:11][17847] Processing: App\Jobs\MyJob
[2020-03-26 17:18:12][17848] Processing: App\Jobs\MyJob
[2020-03-26 17:18:13][17849] Processing: App\Jobs\MyJob
[2020-03-26 17:18:13][17850] Processing: App\Jobs\MyJob
[2020-03-26 17:18:14][17851] Processing: App\Jobs\MyJob
[2020-03-26 17:18:14][17852] Processing: App\Jobs\MyJob
[2020-03-26 17:18:15][17853] Processing: App\Jobs\MyJob

使用的命令是php artisan queue:listen

但似乎没有任何工作是成功完成或失败完成的。所以我想调试原因。所以我想问以下问题:

  1. 如何让我的代码在我的工作中中断一个断点,以便我可以使用 Xdebug 来调试它?我尝试通过命令启动运行程序,XDEBUG_CONFIG="idekey=VSCODE" php artisan queue:listen但我的 IDE 仍无法进入断点。

  2. 另外,我如何记录函数dumpdd函数的信息,以便我可以在运行 artisan 命令的屏幕/控制台中看到结果?我尝试查看 larave 的默认日志:./storage/logs/laravel-2020-03-26.log仍然在我的控制台或日志上都没有看到任何关于dump或的输出dd

我尝试了上面的方法,但我既看不到 dd 的输出也看不到断点。

此外,我尝试使用专用日志通道:

        'jobs' => [
            'driver' => 'daily',
            'path'   => storage_path('logs/jobs.log'),
            'level'  => 'debug',
            'days'   => 7,
        ],

然后使用以下方法记录任何消息:

namespace App\Jobs;

use Illuminate\Bus\Queueable;
use Illuminate\Contracts\Queue\ShouldQueue;
use Illuminate\Foundation\Bus\Dispatchable;
use Illuminate\Queue\InteractsWithQueue;


use App\Model\Etable\User;

class MyJob implements ShouldQueue
{
    use Dispatchable;
    use InteractsWithQueue;
    use Queueable;

    /**
     * @var int
     */
    private $user_id;


    /**
     * @param User   $user          The user that has opted or deopted for newsletter consent
     */
    public function __construct(int $user_id)
    {
        $this->user_id       = $user_id;
    }

    public function handle(): void
    {
        Log::channel('jobs')->debug("hello");
        Log::channel('jobs')->debug(var_export($this->user,true));
        //Logic Here
    }
}

但是没有任何信息被登录./storage/logs/jobs-2020-03-26.log。你知道一旦我分派我的工作,我如何获得关于正在执行的内容的调试信息吗?我想要实现的是记录,有一个视觉指示正在调用方法句柄。

4

1 回答 1

0

一种快速简便的检查方法是只记录这样的字符串:

 public function handle(): void
 {
    Log::channel('jobs')->debug("Job Started");
    //Logic Here
    Log::channel('jobs')->debug("Job Ended");
 }

然后在每行代码放置Log::channel('jobs')->debug("Job ...");命令后检查代码中断的位置。

于 2020-03-26T15:46:19.150 回答