From e53d5dcb1355353817c77c71280b4c6c222a3926 Mon Sep 17 00:00:00 2001 From: = Date: Sun, 2 May 2021 21:40:15 +1000 Subject: [PATCH] fixes for logging --- 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 4af610dcc675..843e5e3b93f9 100644 --- a/app/Http/Middleware/QueryLogging.php +++ b/app/Http/Middleware/QueryLogging.php @@ -55,7 +55,7 @@ class QueryLogging nlog($request->method().' - '.$request->url().": $count queries - ".$time); // if($count > 50) - nlog($queries); + //nlog($queries); LightLogs::create(new DbQuery($request->method(), $request->url(), $count, $time, request()->ip())) ->batch();