Logging Configuration
Logging is defined in terms of groups, each group may have its level set independently via the logs section of the values.yaml used to deploy the Helm Chart.
Example values.yaml section
#------------------------------------------------------------------------------
# Log level options
#------------------------------------------------------------------------------
logs:
api:
level: "INFO"
service:
level: "INFO"
repo:
level: "INFO"
security:
level: "INFO"
oauth2:
level: "INFO"
general:
level: "INFO"
trace:
level: "INFO"
Where the keys under logs correspond to the following categories of logging:
| Key | Logging Category |
|---|---|
api | API controller |
service | Auth Server services |
repo | Storage repositories |
security | API security |
oauth2 | OAuth2 protocol |
general | General information |
trace | Low level traces |