Remove spammy debug message

This commit is contained in:
James Cole
2024-09-28 18:47:39 +02:00
parent 5fc55381a2
commit 3e1ce69d52

View File

@@ -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')));