# Logging

The integrated logging is preconfigured for the different environments as follows.

Environment log level
dev debug
prod errors

The log level can be individually adjusted via a symfony configuration file.

# Example

SHOP_ROOT/config/packages/easy-coupon.yaml

parameters:
     # possible log-level values:
     # debug, info, notice, warning, error, critical, alert, emergency
     easy_coupon_log_level: info
1
2
3
4