{"id":28953737,"url":"https://github.com/mintunitish/log-enhancer","last_synced_at":"2026-04-19T15:03:43.129Z","repository":{"id":57017264,"uuid":"140829162","full_name":"mintunitish/log-enhancer","owner":"mintunitish","description":"Adds more data to logs for easy debugging (Laravel)","archived":false,"fork":false,"pushed_at":"2018-07-29T20:33:29.000Z","size":50,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-10-10T16:38:23.432Z","etag":null,"topics":["error-log","laravel","laravel-package","logging","php","php7"],"latest_commit_sha":null,"homepage":"","language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/mintunitish.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2018-07-13T09:47:22.000Z","updated_at":"2018-07-29T20:31:38.000Z","dependencies_parsed_at":"2022-08-22T11:30:55.632Z","dependency_job_id":null,"html_url":"https://github.com/mintunitish/log-enhancer","commit_stats":null,"previous_names":[],"tags_count":6,"template":false,"template_full_name":null,"purl":"pkg:github/mintunitish/log-enhancer","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mintunitish%2Flog-enhancer","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mintunitish%2Flog-enhancer/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mintunitish%2Flog-enhancer/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mintunitish%2Flog-enhancer/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mintunitish","download_url":"https://codeload.github.com/mintunitish/log-enhancer/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mintunitish%2Flog-enhancer/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32010959,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-18T20:23:30.271Z","status":"online","status_checked_at":"2026-04-19T02:00:07.110Z","response_time":55,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["error-log","laravel","laravel-package","logging","php","php7"],"created_at":"2025-06-23T18:30:53.115Z","updated_at":"2026-04-19T15:03:42.885Z","avatar_url":"https://github.com/mintunitish.png","language":"PHP","readme":"[![Latest Stable Version](https://poser.pugx.org/mintunitish/laravel-log-enhancer/v/stable?format=flat-square)](https://packagist.org/packages/mintunitish/laravel-log-enhancer)\n[![Total Downloads](https://poser.pugx.org/mintunitish/laravel-log-enhancer/downloads?format=flat-square)](https://packagist.org/packages/mintunitish/laravel-log-enhancer)\n[![License](https://poser.pugx.org/mintunitish/laravel-log-enhancer/license?format=flat-square)](https://packagist.org/packages/mintunitish/laravel-log-enhancer)\n[![Monthly Downloads](https://poser.pugx.org/mintunitish/laravel-log-enhancer/d/monthly?format=flat-square)](https://packagist.org/packages/mintunitish/laravel-log-enhancer)\n[![Build Status](https://travis-ci.com/mintunitish/log-enhancer.svg?branch=master)](https://travis-ci.com/mintunitish/log-enhancer)\n[![Codacy Badge](https://api.codacy.com/project/badge/Grade/14fc40ee90574ac38e88e1806f8223b6)](https://www.codacy.com/project/mintu.nitish/log-enhancer/dashboard?utm_source=github.com\u0026amp;utm_medium=referral\u0026amp;utm_content=awesome-people-inc/log-enhancer\u0026amp;utm_campaign=Badge_Grade_Dashboard)\n\n# Log Enhancer (Laravel 5.6)\nLaravel'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.\n\nSometimes, 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 offers.\n\n\n\n## Requirements\n\n* PHP 7.1.3+\n* Laravel 5.6\n\n## Installation\n\n1) Install the package by running this command in your terminal/cmd:\n```\ncomposer require mintunitish/laravel-log-enhancer\n```\n\n2) Add this package's LogEnhancer class to the tap option of your log channel in **config/logging.php**:\n```\n'stack' =\u003e [\n    'driver' =\u003e 'stack',\n    'tap' =\u003e [AwesomePeople\\LaravelLogEnhancer\\LogEnhancer::class],\n    'channels' =\u003e ['daily', 'slack'],\n],\n```\n\nOptionally, you can import config file by running this command in your terminal/cmd:\n```\nphp artisan vendor:publish --tag=laravel-log-enhancer-config\n```\n\nIt has following configuration settings:\n* (bool) log_request_details =\u003e Set to *true* if you wish to log request data. [(Reference)](https://github.com/Seldaek/monolog/blob/master/src/Monolog/Processor/WebProcessor.php)\n\n* (bool) log_input_data =\u003e Set to *true* if you wish to log user input data\n\n* (bool) log_request_headers =\u003e Set to *true* if you wish to log request headers\n\n* (bool) log_session_data =\u003e Set to *true* if you wish to log session data\n\n* (bool) log_memory_usage =\u003e Set to *true* if you wish to log memory usage. [(Reference)](https://github.com/Seldaek/monolog/blob/master/src/Monolog/Processor/MemoryUsageProcessor.php)\n\n* (bool) log_git_data =\u003e Set to *true* if you wish to log git branch and commit details. [(Reference)](https://github.com/Seldaek/monolog/blob/master/src/Monolog/Processor/GitProcessor.php)\n\n* (array) ignore_input_fields =\u003e 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.\n\n## Authors\n\n* [**Nitish Kumar**](https://github.com/mintunitish)\n\n## License\n\nThis project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details\n\n## Special Thanks to\n\n* [Laravel](https://laravel.com) Community\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmintunitish%2Flog-enhancer","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmintunitish%2Flog-enhancer","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmintunitish%2Flog-enhancer/lists"}