Skip to content

Commit

Permalink
Merge pull request #37 from MariaInsyt/arthur
Browse files Browse the repository at this point in the history
remove logs
  • Loading branch information
kyagie committed Mar 6, 2024
2 parents 74b716d + 8281557 commit 2f0fed2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/Console/Kernel.php
Expand Up @@ -16,10 +16,10 @@ protected function schedule(Schedule $schedule): void
$schedule->command('sanctum:prune-expired --hours=24')->daily();
$schedule->command('app:check-for-expired-one-time-passwords')->everyMinute()
->onSuccess(function () {
Log::info('Expired one-time passwords checked and updated.');
// Log::info('Expired one-time passwords checked and updated.');
})
->onFailure(function () {
Log::error('Expired one-time passwords check failed.');
// Log::error('Expired one-time passwords check failed.');
});
}

Expand Down

0 comments on commit 2f0fed2

Please sign in to comment.