mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-12-12 09:52:20 +00:00
Remove some debug.
This commit is contained in:
@@ -560,12 +560,12 @@ class BillRepository implements BillRepositoryInterface
|
|||||||
|
|
||||||
/** @var Bill $bill */
|
/** @var Bill $bill */
|
||||||
foreach ($bills as $bill) {
|
foreach ($bills as $bill) {
|
||||||
app('log')->debug(sprintf('Processing bill #%d ("%s")', $bill->id, $bill->name));
|
// app('log')->debug(sprintf('Processing bill #%d ("%s")', $bill->id, $bill->name));
|
||||||
$dates = $this->getPayDatesInRange($bill, $start, $end);
|
$dates = $this->getPayDatesInRange($bill, $start, $end);
|
||||||
$count = $bill->transactionJournals()->after($start)->before($end)->count();
|
$count = $bill->transactionJournals()->after($start)->before($end)->count();
|
||||||
$total = $dates->count() - $count;
|
$total = $dates->count() - $count;
|
||||||
app('log')->debug(sprintf('Pay dates: %d, count: %d, left: %d', $dates->count(), $count, $total));
|
// app('log')->debug(sprintf('Pay dates: %d, count: %d, left: %d', $dates->count(), $count, $total));
|
||||||
app('log')->debug('dates', $dates->toArray());
|
// app('log')->debug('dates', $dates->toArray());
|
||||||
|
|
||||||
if ($total > 0) {
|
if ($total > 0) {
|
||||||
$currency = $bill->transactionCurrency;
|
$currency = $bill->transactionCurrency;
|
||||||
|
|||||||
Reference in New Issue
Block a user