gokure / hyperf-http-logger

A HTTP Requests Logger for Hyperf

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

A HTTP Requests Logger for Hyperf

A middleware which can log incoming requests and responses to the log.

Installation

Require the gokure/hypref-http-logger package in your composer.json and update your dependencies:

composer require gokure/hypref-http-logger

Optionally you can publish the configuration file with:

php bin/hyperf.php vendor:publish gokure/hypref-http-logger

Usage

To allow HTTP Logger in your application, add the HttpLoggerMiddleware middleware at the top of the property of config/autoload/middlewares.php file in the config (see Configuration below):

'http' => [
    \Gokure\HttpLogger\HttpLoggerMiddleware::class,
    ...
],

Also, to allow HTTP Logger for exception responses, you need add the HttpLoggerExceptionHandler handler at the bottom of the property of config/autoload/exceptions.php file:

'handler' => [
    'http' => [
        ...
        Gokure\HttpLogger\HttpLoggerExceptionHandler::class,
    ],
],

Note: No response logged, if $this->stopPropagation() is used in the previous exception handlers.

TODO

  • To filter secret body of requests and responses.
  • Add test cases.

License

Released under the MIT License, see LICENSE.

About

A HTTP Requests Logger for Hyperf

License:MIT License


Languages

Language:PHP 100.0%