Change loglevel to debug again.

This commit is contained in:
James Cole
2023-12-29 12:00:15 +01:00
parent fb1a66d872
commit 5b8f67e992
13 changed files with 16 additions and 16 deletions

View File

@@ -118,7 +118,7 @@ class AccountBalanceGrouped
*/
public function groupByCurrencyAndPeriod(): void
{
Log::info(sprintf('Created new ExchangeRateConverter in %s', __METHOD__));
Log::debug(sprintf('Created new ExchangeRateConverter in %s', __METHOD__));
$converter = new ExchangeRateConverter();
// loop. group by currency and by period.

View File

@@ -45,7 +45,7 @@ class SummaryBalanceGrouped
public function groupTransactions(string $key, array $journals): void
{
Log::info(sprintf('Created new ExchangeRateConverter in %s', __METHOD__));
Log::debug(sprintf('Created new ExchangeRateConverter in %s', __METHOD__));
Log::debug(sprintf('Now in groupTransactions with key "%s" and %d journal(s)', $key, count($journals)));
$converter = new ExchangeRateConverter();
$this->keys[] = $key;