ageekdev/vapor-http-logger
最新稳定版本:v1.2.0
Composer 安装命令:
composer require ageekdev/vapor-http-logger
包简介
This package can log incoming requests to the cloud watch for laravel vapor application.
README 文档
README
Log HTTP requests in Laravel Vapor applications
Installation
You can install the package via composer:
composer require ageekdev/vapor-http-logger
You can publish the config file with:
php artisan vendor:publish --provider="AgeekDev\HttpLogger\HttpLoggerServiceProvider" --tag="config"
This is the contents of the published config file:
return [ /* * Automatic registration of middleware will only happen if this setting is `true` */ 'enabled' => env('HTTP_LOGGER_ENABLED', true), /* * The log profile which determines whether a request should be logged. * It should implement `LogProfile`. */ 'log_profile' => \AgeekDev\HttpLogger\LogNonGetRequests::class, /* * The log writer used to write the request to a log. * It should implement `LogWriter`. */ 'log_writer' => \AgeekDev\HttpLogger\DefaultLogWriter::class, /* * The log channel used to write the request. */ 'log_channel' => env('LOG_CHANNEL', 'stderr'), /* * The log level used to log the request. */ 'log_level' => 'info', /* * List of request methods that will be logged. */ 'request_methods' => ['post', 'put', 'patch', 'delete'], /* * Filter out body fields which will never be logged. */ 'except' => [ 'password', 'password_confirmation', ], /* * List of headers that will be sanitized. For example Authorization, Cookie, Set-Cookie... */ 'sanitize_headers' => [], ];
Testing
composer test
Changelog
Please see CHANGELOG for more information on what has changed recently.
Contributing
Please see CONTRIBUTING for details.
Security Vulnerabilities
Please review our security policy on how to report security vulnerabilities.
Credits
This package contains code copied from Log HTTP requests
License
The MIT License (MIT). Please see License File for more information.
统计信息
- 总下载量: 24.13k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 1
- 点击次数: 1
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2023-10-09