A tool to log all database queries in a Laravel application. Bug kudos to `overtrue`, on whose work this package is originally based (overtrue/laravel-query-logger).
bhuvidya/laravel-query-logger is a Laravel package for a tool to log all database queries in a laravel application. bug kudos to `overtrue`, on whose work this package is originally based (overtrue/laravel-query-logger)..
It currently has 0 GitHub stars and 19 downloads on Packagist (latest version v8.0.2).
Install it with composer require bhuvidya/laravel-query-logger.
Discover more Laravel packages by bhuvidya
or browse all Laravel packages to compare alternatives.
Last updated
Note I have now switched the semver versioning for my Laravel packages to "match" the latest supported Laravel version.
Laravel Query Logger is a package to enable easy and flexible logging of all or a select range of database queries. It supports standard logging, and well as dump-server.
Big kudos to github user overtrue, on whose work this package is based (https://github.com/overtrue/laravel-query-logger). I ended up doing so many changes that I thought it best to start my own package.
Add bhuvidya/laravel-query-logger to your app:
$ composer require "bhuvidya/laravel-query-logger"
You can do just about any configuration you need via your .env file. The env variables used are:
QUERY_LOGGER_ON
QUERY_LOGGER_ENV
QUERY_LOGGER_PARAM
QUERY_LOGGER_ALL
QUERY_LOGGER_MIN_TIME
QUERY_LOGGER_EMIT_LOG
QUERY_LOGGER_EMIT_LEVEL
QUERY_LOGGER_EMIT_CHANNEL
QUERY_LOGGER_EMIT_STACK
QUERY_LOGGER_EMIT_PREFIX
QUERY_LOGGER_EMIT_DUMP_SERVER
QUERY_LOGGER_INSTANCE
QUERY_LOGGER_FACADE
If for some reason you prefer to manage your own configuration file, run the following command:
$ php artisan vendor:publish --provider='Bhuvidya\Countries\CountriesServiceProvider' --tag=config
The config file can then be found at config/query_logger.php.
TODO
MIT