From eb1547c18715c9cb9304cfcd637292ac879d8ba1 Mon Sep 17 00:00:00 2001 From: David Bomba Date: Sun, 5 Sep 2021 07:46:03 +1000 Subject: [PATCH] Remove query count logs --- app/Http/Middleware/QueryLogging.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Http/Middleware/QueryLogging.php b/app/Http/Middleware/QueryLogging.php index 551be496f6be..906733a8925b 100644 --- a/app/Http/Middleware/QueryLogging.php +++ b/app/Http/Middleware/QueryLogging.php @@ -52,7 +52,7 @@ class QueryLogging $timeEnd = microtime(true); $time = $timeEnd - $timeStart; - nlog("Query count = {$count}"); + // nlog("Query count = {$count}"); if($count > 250) nlog($queries);