From 2e46d9ba33858b137d38c5fed9b565eef947fb92 Mon Sep 17 00:00:00 2001 From: James Cole Date: Tue, 31 Dec 2024 08:18:40 +0100 Subject: [PATCH] Clean up some logs. --- app/Http/Controllers/Chart/AccountController.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/Http/Controllers/Chart/AccountController.php b/app/Http/Controllers/Chart/AccountController.php index fb82ca05b1..3b7dec371b 100644 --- a/app/Http/Controllers/Chart/AccountController.php +++ b/app/Http/Controllers/Chart/AccountController.php @@ -114,7 +114,7 @@ class AccountController extends Controller // loop the accounts, then check for balance and currency info. foreach ($accounts as $account) { - Log::debug(sprintf('[a] Now in account #%d ("%s")', $account->id, $account->name)); + // Log::debug(sprintf('[a] Now in account #%d ("%s")', $account->id, $account->name)); $expenses = $endBalances[$account->id] ?? false; if (false === $expenses) { Log::error(sprintf('Found no end balance for account #%d', $account->id)); @@ -573,7 +573,7 @@ class AccountController extends Controller // loop the accounts, then check for balance and currency info. foreach ($accounts as $account) { - Log::debug(sprintf('[b] Now in account #%d ("%s")', $account->id, $account->name)); + // Log::debug(sprintf('[b] Now in account #%d ("%s")', $account->id, $account->name)); $expenses = $endBalances[$account->id] ?? false; if (false === $expenses) { Log::error(sprintf('Found no end balance for account #%d', $account->id));