Package Data | |
---|---|
Maintainer Username: | aungwinthant |
Maintainer Contact: | agwinthant@gmail.com (aung win thant) |
Package Create Date: | 2019-09-20 |
Package Last Update: | 2022-10-02 |
Language: | PHP |
License: | MIT |
Last Refreshed: | 2025-02-06 15:05:04 |
Package Statistics | |
---|---|
Total Downloads: | 122,852 |
Monthly Downloads: | 912 |
Daily Downloads: | 50 |
Total Stars: | 347 |
Total Watchers: | 4 |
Total Forks: | 61 |
Total Open Issues: | 19 |
This is a small package that can helps in debugging api logs. It can log request method, url, duration, request payload, which models are retrieved, controller and method.
composer require awt/apilogger @dev
AWT\Providers\ApiLogServiceProvider::class
php artisan vendor:publish --tag=config
The config file is called apilogs.php. Currently supported drivers are db and file
By default the logger will use file to log the data. But if you want to use Database for logging, migrate table by using
You dont need to migrate if you are just using file driver
php artisan migrate
//in route.php or web.php
Route::middleware('apilogger')->post('/test',function(){
return response()->json("test");
});
You can permenently clear the logs by using the following command.
php artisan apilog:clear
AbstractLogger
class which provide helpful methods such as logData and mapArrayToModel.If you discover any security related issues, please email agwinthant@gmail.com instead of using the issue tracker.
The MIT License (MIT). Please see License File for more information.