25carat/oro-api-logger
Logs all OroCommerce REST API requests and responses for monitoring integrations. Adds a dedicated api_logger channel writing to api-logger-[env].log with configurable minimum level; headers at info, bodies at debug, client errors at error, server errors at critical.
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.
How can I help you explore Laravel packages today?