From 7c8445707e79e040d48523117ddac018e30a24c3 Mon Sep 17 00:00:00 2001 From: James Cole Date: Thu, 26 Dec 2024 14:12:05 +0100 Subject: [PATCH] Add moar debug. --- app/Http/Controllers/Chart/AccountController.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Http/Controllers/Chart/AccountController.php b/app/Http/Controllers/Chart/AccountController.php index d4f95e0334..f2a3c6ea23 100644 --- a/app/Http/Controllers/Chart/AccountController.php +++ b/app/Http/Controllers/Chart/AccountController.php @@ -417,7 +417,7 @@ class AccountController extends Controller */ public function period(Account $account, Carbon $start, Carbon $end): JsonResponse { - Log::debug('Now in period()'); + Log::debug(sprintf('Now in period("%s", "%s")', $start->format('Y-m-d'), $end->format('Y-m-d'))); $chartData = []; $cache = new CacheProperties(); $cache->addProperty('chart.account.period');