If I execute the following command:

php flarum schedule:run

I see only the following message and nothing else:
[2025-04-10T10:30:18+00:00] Running scheduled command: '/usr/local/php84/bin/php-cli' 'flarum' queue:work --stop-when-empty > '/dev/null' 2>&1

Apparently the command output is ignored and not printed internally. Which I guess is OK when that command is executed by a cron job, however I would like to troubleshoot an issue and run the scheduler manually and see its output. I tried with the -v option which the help says should increase the verbosity but it doesn't seem to change anything and I see no output printed.

  • luceos replied to this.
  • CyberGene stop the cron (or be quicker than that) and run the php flarum queue:work --stop-when-empty -vvv command manually. If you leave out --stop-when-empty you might be faster than the cronjob.

    CyberGene stop the cron (or be quicker than that) and run the php flarum queue:work --stop-when-empty -vvv command manually. If you leave out --stop-when-empty you might be faster than the cronjob.