From 3e1ce69d52682ba7f862cbafd30e955d7f51a427 Mon Sep 17 00:00:00 2001 From: James Cole Date: Sat, 28 Sep 2024 18:47:39 +0200 Subject: [PATCH] Remove spammy debug message --- app/Support/Models/AccountBalanceCalculator.php | 1 - 1 file changed, 1 deletion(-) diff --git a/app/Support/Models/AccountBalanceCalculator.php b/app/Support/Models/AccountBalanceCalculator.php index 2b1e8883d2..bee9b868b2 100644 --- a/app/Support/Models/AccountBalanceCalculator.php +++ b/app/Support/Models/AccountBalanceCalculator.php @@ -81,7 +81,6 @@ class AccountBalanceCalculator private function getLatestBalance(int $accountId, int $currencyId, ?Carbon $notBefore): string { if (null === $notBefore) { - Log::debug('getLatestBalance: no notBefore date, returning 0'); return '0'; } Log::debug(sprintf('getLatestBalance: notBefore date is "%s", calculating', $notBefore->format('Y-m-d')));