This bundle will add logging of all api requests and responses. This is useful for monitoring applications or services which consume the Oro Rest API.
composer require 25carat/oro-api-logger
Add the minimum log level configuration to the parameters.yml.dist
file of your project.
If this parameter is missing, it will cause errors in the service container.
:::yaml
parameters:
twenty5carat.api_logger.level: error
A separate channel api_logger
has been created to log the api messages.
The messages will be logged in a separate file api-logger-[environment].log
The amount of information in the log messages depends on the configured log level.
Server errors are logged as critical
messages.
Client errors are logged as error
messages.
Request and response headers are logged as info
messages.
Request and response bodies are logged as debug
messages.