You can specify what to do if a scheduled task fails or succeeds.
$schedule->command('emails:send') ->daily() ->onSuccess(function () { // The task succeeded }) ->onFailure(function () { // The task failed });
Tip given by @cosmeescobedo