mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-02-25 18:45:27 -06:00
Remove extra logging.
This commit is contained in:
parent
c4669ade29
commit
00f25836c0
@ -33,7 +33,8 @@ class StaticConfigKey
|
||||
public static array $accepted = [
|
||||
'firefly.version',
|
||||
'firefly.api_version',
|
||||
'firefly.default_location'
|
||||
'firefly.default_location',
|
||||
'firefly.account_to_transaction'
|
||||
];
|
||||
/**
|
||||
* @param string $value
|
||||
|
@ -148,11 +148,6 @@ class BillTransformer extends AbstractTransformer
|
||||
$start = clone $bill->date;
|
||||
Log::debug(sprintf('Bill start date is %s', $start->format('Y-m-d')));
|
||||
while ($start < $date) {
|
||||
Log::debug(
|
||||
sprintf(
|
||||
'%s (bill start date) < %s (given date) so we jump ahead one period (with a skip maybe).', $start->format('Y-m-d'), $date->format('Y-m-d')
|
||||
)
|
||||
);
|
||||
$start = app('navigation')->addPeriod($start, $bill->repeat_freq, $bill->skip);
|
||||
}
|
||||
Log::debug(sprintf('End of loop, bill start date is now %s', $start->format('Y-m-d')));
|
||||
|
Loading…
Reference in New Issue
Block a user