API Logger is a Laravel package by @aungwinthant that helps in debugging API logs. It can log the request method, URL, duration, request payload, models, and controller action.
It comes with a dashboard (the route in your application is /apilogger
) where you can visualize all this data from your Laravel routes:
To log a route, you use the following middleware:
Route::middleware('apilogger')
->post('/test',function(){
return response()->json("test");
});
You can also implement a custom log driver by implementing an interface provided by this package.
To learn more about this package, get full installation instructions, and view the source code on GitHub at aungwinthant/apilogger.
This package was originally submitted to our Laravel News Links section. Follow along on Twitter @LaravelLinks
0 comments:
Post a Comment
Thanks