25carat / oro-api-logger
This bundle will allow you to log all api requests and responses
Installs: 1
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 0
Forks: 1
Open Issues: 1
Type:symfony-bundle
Requires
- php: ^8.1
- oro/platform: ^5.0
Requires (Dev)
- phpmd/phpmd: ^2.12
- phpro/grumphp-shim: ^1.11
- squizlabs/php_codesniffer: ^3.6
This package is auto-updated.
Last update: 2025-01-08 14:12:33 UTC
README
Api Logger for Oro Commerce
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.
Installation
composer require 25carat/oro-api-logger
Configuration
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
Logging
Channel
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
Log Levels
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.