Add debug

This commit is contained in:
James Cole 2022-03-06 11:43:25 +01:00
parent d6e5f71d50
commit 2715a181e3
No known key found for this signature in database
GPG Key ID: B49A324B7EAD6D80

View File

@ -250,6 +250,7 @@ class CreateRecurringTransactions implements ShouldQueue
private function hasNotStartedYet(Recurrence $recurrence): bool
{
$startDate = $this->getStartDate($recurrence);
Log::debug(sprintf('Start date is %s', $startDate->format('Y-m-d')));
return $startDate->gt($this->date);
}