All Projects → freshbitsweb → Laravel Log Enhancer

freshbitsweb / Laravel Log Enhancer

Licence: mit
Make debugging easier by adding more data to your laravel logs (Laravel 5.6+)

Projects that are alternatives of or similar to Laravel Log Enhancer

Lapse
Laravel Self Hosted Tiny Error Tracking System With Notifications
Stars: ✭ 172 (-44.69%)
Mutual labels:  laravel, laravel-5-package, error-reporting
Laracrud
Laravel Code Generator based on MySQL Database
Stars: ✭ 238 (-23.47%)
Mutual labels:  laravel, laravel-5-package
Laravel Database Encryption
A package for automatically encrypting and decrypting Eloquent attributes in Laravel 5.5+, based on configuration settings.
Stars: ✭ 238 (-23.47%)
Mutual labels:  laravel, laravel-5-package
Log Fake
A drop in fake logger for testing with the Laravel framework.
Stars: ✭ 254 (-18.33%)
Mutual labels:  laravel, logging
Laravel Jwt
Dead simple, plug and play JWT API Authentication for Laravel (5.4+)
Stars: ✭ 225 (-27.65%)
Mutual labels:  laravel, laravel-5-package
Tracker
Laravel Stats Tracker
Stars: ✭ 2,638 (+748.23%)
Mutual labels:  laravel, logging
Laravel Gitscrum
GitScrum is a Project Management Tool, developed to help entrepreneurs, freelancers, managers, and teams Skyrocket their Productivity with the Agile methodology and Gamification.
Stars: ✭ 2,686 (+763.67%)
Mutual labels:  laravel, laravel-5-package
Voyager Hooks
Hooks system integrated into Voyager.
Stars: ✭ 200 (-35.69%)
Mutual labels:  laravel, laravel-5-package
Laravel Chunk Upload
The basic implementation for chunk upload with multiple providers support like jQuery-file-upload, pupload, DropZone and resumable.js
Stars: ✭ 275 (-11.58%)
Mutual labels:  laravel, laravel-5-package
Laravel Achievements
Achievements for Laravel 5.3+
Stars: ✭ 279 (-10.29%)
Mutual labels:  laravel, laravel-5-package
Laravel Masterpass
Helps you securely setup a master password and login into user accounts with it.
Stars: ✭ 289 (-7.07%)
Mutual labels:  laravel, laravel-5-package
Sneaker
An easy way to send emails whenever an exception occurs on server.
Stars: ✭ 223 (-28.3%)
Mutual labels:  laravel, laravel-5-package
Hooks
Hooks is a extension system for your Laravel application.
Stars: ✭ 202 (-35.05%)
Mutual labels:  laravel, laravel-5-package
Auth Tests
Always-current tests for Laravel's authentication system. Curated by the community.
Stars: ✭ 230 (-26.05%)
Mutual labels:  laravel, laravel-5-package
Voyager Frontend
The Missing Front-end for The Missing Laravel Admin 🔥
Stars: ✭ 200 (-35.69%)
Mutual labels:  laravel, laravel-5-package
Bouncer
Eloquent roles and abilities.
Stars: ✭ 2,763 (+788.42%)
Mutual labels:  laravel, laravel-5-package
Mailgun
Mailgun package for Laravel
Stars: ✭ 297 (-4.5%)
Mutual labels:  laravel, laravel-5-package
Laradmin
Laradmin后台管理系统
Stars: ✭ 197 (-36.66%)
Mutual labels:  laravel, laravel-5-package
Blogetc
Easily add a full Laravel blog (with built in admin panel and public views) to your laravel project with this simple package.
Stars: ✭ 198 (-36.33%)
Mutual labels:  laravel, laravel-5-package
Laravel Gamp
📊 Laravel Google Analytics Measurement Protocol Package
Stars: ✭ 271 (-12.86%)
Mutual labels:  laravel, laravel-5-package

Latest Stable Version Total Downloads License StyleCI Buy us a tree

Laravel Log Enhancer (Laravel 5.6 to Laravel 8.x)

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 :)

Requirements

PHP Laravel Package
7.3+ 8.x v1.3.0
7.2.5+ 7.x v1.2.0
<7.2.5 6.x v1.1.0
<7.1 5.x v1.0.*

Notes:

Installation

  1. Install the package by running this command in your terminal/cmd:
composer require freshbitsweb/laravel-log-enhancer
  1. Add this package's LogEnhancer class to the tap option of your log channel in config/logging.php:
'production_stack' => [
    'driver' => 'stack',
    'tap' => [Freshbitsweb\LaravelLogEnhancer\LogEnhancer::class],
    'channels' => ['daily', 'slack'],
],

Optionally, you can import config file by running this command in your terminal/cmd:

php artisan vendor:publish --tag=laravel-log-enhancer-config

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.

Lumen compatibility

We do not use Lumen in any of our projects. And this package is not tested with Lumen framework. If you are willing to use this package with Lumen, please help us by testing and making a PR to make it work. Thanks.

Authors

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

Treeware

You're free to use this package, but if it makes it to your production environment I would highly appreciate you buying the world a tree.

It’s now common knowledge that one of the best tools to tackle the climate crisis and keep our temperatures from rising above 1.5C is to plant trees. If you contribute to our forest you’ll be creating employment for local families and restoring wildlife habitats.

You can buy trees at for our forest here offset.earth/treeware

Read more about Treeware at treeware.earth

Special Thanks to

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].