You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -100,23 +101,24 @@ This package was inspired by [mnabialek/laravel-sql-logger](https://github.com/m
100
101
101
102
- Query logging is not triggered upon each query execution but instead at a final step, using `RequestHandled` and `CommandFinished` events.
102
103
- This allows us to include much more information about the whole query executions like total query count, total execution time, and very detailed header information like origin (request URL/console command), authenticated user, app environment, client browser agent / IP / hostname.
103
-
- This package is greatly simplified and only provides support for Laravel 10 / PHP 8.1+
104
+
- This package is greatly simplified and only provides support for Laravel 10+ / PHP 8.1+
104
105
- It uses the Laravel built-in query logging (`DB::enableQueryLog()`) which logs all queries in memory, which should perform much better than writing every single query to the log file.
105
106
- By default, `onlime/laravel-sql-reporter` produces much nicer log output, especially since we only write header information before the first query.
0 commit comments