Download the PHP package danstuchbury/laravel-log-enhancer without Composer
On this page you can find all versions of the php package danstuchbury/laravel-log-enhancer. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download danstuchbury/laravel-log-enhancer
More information about danstuchbury/laravel-log-enhancer
Files in danstuchbury/laravel-log-enhancer
Package laravel-log-enhancer
Short Description Enhancer for default Laravel Monolog
License MIT
Informations about the package laravel-log-enhancer
Laravel Log Enhancer (Laravel 5.6 to Laravel 5.8)
Laravel's logging system helps a lot for storing data as well as while troubleshooting some hidden bugs. The data related to the exception automatically gets logged whenever something goes wrong.
Sometimes, we need more than just stack trace to debug the issue easily. The things like request URL, request input data, session data, etc. help us hunt down the exact cause quickly. That's what this plug-and-play Laravel package does for you :)
Note: For Laravel 5.5, you may use Slack Error Notifier package.
Requirements
- PHP 7.1.3+
- Laravel 5.6+
Installation
1) Install the package by running this command in your terminal/cmd:
2) Add this package's LogEnhancer class to the tap option of your log channel in config/logging.php:
Optionally, you can import config file by running this command in your terminal/cmd:
It has following configuration settings:
-
(bool) log_request_details => Set to true if you wish to log request data. Reference
-
(bool) log_input_data => Set to true if you wish to log user input data
-
(bool) log_request_headers => Set to true if you wish to log request headers
-
(bool) log_session_data => Set to true if you wish to log session data
-
(bool) log_memory_usage => Set to true if you wish to log memory usage Reference
-
(bool) log_git_data => Set to true if you wish to log git branch and commit details Reference
- (array) ignore_input_fields => If input data is being sent, you can specify the inputs from the user that should not be logged. for example, password,cc number, etc.
Authors
- Gaurav Makhecha - Initial work
- Dan Stuchbury - Experimenting - I take no credit for the work, sourced from (https://laravelfactory.com/blog/step-by-step-guide-to-laravel-package-development)
See also the list of contributors who participated in this project.
License
This project is licensed under the MIT License - see the LICENSE file for details
Special Thanks to
- Laravel Community
All versions of laravel-log-enhancer with dependencies
illuminate/support Version 5.6.*|5.7.*|5.8.*
monolog/monolog Version ^1.23