From 1e3665e54f3d0691168b91d38fd2794137e30176 Mon Sep 17 00:00:00 2001 From: James Cole Date: Fri, 29 Dec 2023 12:07:09 +0100 Subject: [PATCH] Make log message debug level [skip ci] --- app/Support/Http/Api/ExchangeRateConverter.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/app/Support/Http/Api/ExchangeRateConverter.php b/app/Support/Http/Api/ExchangeRateConverter.php index 3d24e44892..70991c150d 100644 --- a/app/Support/Http/Api/ExchangeRateConverter.php +++ b/app/Support/Http/Api/ExchangeRateConverter.php @@ -122,8 +122,7 @@ class ExchangeRateConverter public function summarize(): void { - Log::debug('summarize()'); - Log::info(sprintf('ExchangeRateConverter ran %d queries.', $this->queryCount)); + Log::debug(sprintf('ExchangeRateConverter ran %d queries.', $this->queryCount)); } /**