Stars: 338
Forks: 61
Pull Requests: 15
Issues: 30
Watchers: 4
Last Updated: 2022-10-02 08:13:55
Small laravel package for viewing api logs which can be used in debugging.
License: MIT License
Languages: PHP, Blade
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 --provider="AWT\Providers\ApiLogServiceProvider"
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 can also configure which fields should not be logged like passwords, secrets, etc.
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.db
or file
as the driver. eg: \App\Apilogs\CustomLogger::class
In config/apilog.php you have 'route' option, you can change the prefix and add auth middleware or any other middleware
'route' => [
'prefix' => 'apilogs',
'middleware' => null,//Can be change to ['auth'] or others
]
If you discover any security related issues, please email [email protected] instead of using the issue tracker.
The MIT License (MIT). Please see License File for more information.