saint / laravel-logger
Log SQL/Cache queries in Laravel/Lumen framework
Requires
- illuminate/support: 5.*
This package is not auto-updated.
Last update: 2024-12-16 17:06:45 UTC
README
This module allows you to log SQL queries (and slow SQL queries) to log file in Laravel/Lumen framework. It's useful mainly when developing your application to verify whether your queries are valid and to make sure your application doesn't run too many or too slow database queries.
Installation
Laravel 5.*
-
Run
composer require mnabialek/laravel-sql-logger
in console to install this module
-
Open
config/app.php
and inproviders
section add:Mnabialek\LaravelSqlLogger\Providers\ServiceProvider::class,
-
Run:
php artisan vendor:publish --provider="Mnabialek\LaravelSqlLogger\Providers\ServiceProvider"
in your console to publish default configuration files
-
Open
config/sql_logger.php
file and adjust settings to your need (by default it uses.env
file so you can skip this step if you want). -
In your .env file add the following entries:
SQL_LOG_QUERIES=true SQL_LOG_SLOW_QUERIES=true SQL_SLOW_QUERIES_MIN_EXEC_TIME=100 SQL_LOG_OVERRIDE=false SQL_LOG_DIRECTORY=logs/sql SQL_CONVERT_TIME_TO_SECONDS=false SQL_LOG_SEPARATE_ARTISAN=false
and adjust values to your needs. If you have also
.env.sample
it's also recommended to add those entries also in.env.sample
file just to make sure everyone know about those env variables. Be aware thatSQL_LOG_DIRECTORY
is directory inside storage directory. If you want you can change it editingconfig/sql_logger.php
file -
Make sure directory specified in
.env
file exists in storage path and you have valid file permissions to create and modify files in this directory
Lumen 5.*
-
Run
composer require mnabialek/laravel-sql-logger
in console to install this module
-
Open
bootstrap/app.php
and add:$app->register(Mnabialek\LaravelSqlLogger\Providers\ServiceProvider::class);
-
In your .env file add the following entries:
SQL_LOG_QUERIES=true SQL_LOG_SLOW_QUERIES=true SQL_SLOW_QUERIES_MIN_EXEC_TIME=100 SQL_LOG_OVERRIDE=false SQL_LOG_DIRECTORY=logs/sql SQL_CONVERT_TIME_TO_SECONDS=false SQL_LOG_SEPARATE_ARTISAN=false
and adjust values to your needs. If you have also
.env.sample
it's also recommended to add those entries also in.env.sample
file just to make sure everyone know about those env variables. Be aware thatSQL_LOG_DIRECTORY
is directory inside storage directory. -
Make sure directory specified in
.env
file exists in storage path and you have valid file permissions to create and modify files in this directory