mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-10-14 00:04:24 +00:00
Remove extra logging.
This commit is contained in:
@@ -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')));
|
||||
|
Reference in New Issue
Block a user