Package Data | |
---|---|
Maintainer Username: | dlsaint |
Maintainer Contact: | siantho123@gmail.com (saint) |
Package Create Date: | 2017-01-06 |
Package Last Update: | 2017-01-06 |
Language: | PHP |
License: | MIT |
Last Refreshed: | 2024-12-16 15:03:20 |
Package Statistics | |
---|---|
Total Downloads: | 7 |
Monthly Downloads: | 0 |
Daily Downloads: | 0 |
Total Stars: | 1 |
Total Watchers: | 2 |
Total Forks: | 0 |
Total Open Issues: | 0 |
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.
Run
composer require mnabialek/laravel-sql-logger
in console to install this module
Open config/app.php
and in providers
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 that SQL_LOG_DIRECTORY
is directory inside storage directory. If you want you can change it editing config/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
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 that SQL_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