I'm using Laravel Forge and setup a queue with the panel.
I can see there is a log file in /home/forge/.forge/worker-xxxxxx.log.
But it's weird because got no any message log into the file.
I expect it would be something like running php artisan queue:listen on local, logging something like:
Finally I found the solution to log my queue worker.
Unfortunately, I can't do it directly in Laravel Forge panel, because I don't see any configuration for it.
So here's my solution:
edit supervisor configuration directly by sudo nano /etc/supervisor/conf.d/worker-XXXXXX.conf
reload supervisor by sudo supervisorctl update
check the queue now, it should running without --quiet mode.
@crossrt So clutch. Every time I start a new queue worker, I come here to set up the logging.
I don't understand why this isn't the default behavior, or why there isn't an option in Forge.