You can specify what to do if a scheduled task fails or succeeds.
1$schedule->command('emails:send')2 ->daily()3 ->onSuccess(function () {4 // The task succeeded5 })6 ->onFailure(function () {7 // The task failed8 });
Tip given by @cosmeescobedo