I am running this code in Laravel's scheduler but the log is not appearing. I am using the latest master version of Laravel ("version": "v10.44.0").
What could be happening?
$schedule->call(function () {
Log::info("message");
})
->description("example")
->everyMinute()
->withoutOverlapping(10)
->evenInMaintenanceMode();
Thanks in advance!