Some extra debugging.

This commit is contained in:
James Cole 2020-01-09 19:42:28 +01:00
parent 2efe5b07e2
commit cf067d0bd2
No known key found for this signature in database
GPG Key ID: C16961E655E74B5E

View File

@ -236,7 +236,7 @@ class BillTransformer extends AbstractTransformer
} }
// add to set // add to set
$set->push(clone $nextExpectedMatch); $set->push(clone $nextExpectedMatch);
Log::debug(sprintf('Add next expected match to set because its in the current start/end range, which now contains %d item(s)', $set->count())); Log::debug(sprintf('Add next expected match (%s) to set because its in the current start/end range, which now contains %d item(s)', $nextExpectedMatch->format('Y-m-d'), $set->count()));
$nextExpectedMatch->addDay(); $nextExpectedMatch->addDay();
$currentStart = clone $nextExpectedMatch; $currentStart = clone $nextExpectedMatch;
$loop++; $loop++;