Skip to content

Commit

Permalink
Clarified for log levels which default values apply
Browse files Browse the repository at this point in the history
  • Loading branch information
m-mohr committed Jan 17, 2024
1 parent 82102c3 commit 6ea99c3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- `GET /file_formats`: Base paramater on top of normal JSON Schema, not Process JSON Schema
- `PATCH /services/{service_id}` and `PATCH /jobs/{job_id}`: Explicitly allow updating back-end specific properties (as in `POST`)
- `GET /services/{service_id}` and `GET /jobs/{job_id}`: Explicitly allow listing back-end specific properties (as provided in `POST`)
- Clarified for log levels which default values apply

## [1.2.0] - 2021-05-25

Expand Down
5 changes: 3 additions & 2 deletions openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5895,7 +5895,8 @@ components:
The order of the levels is as follows (from low to high severity): `debug`, `info`, `warning`, `error`.
That means if `warning` is set, the back-end will only store log entries with the level `warning` and `error`.
The default minimum log level is `info`. Users need to specifically set this property to `debug` to get *all* log entries.
The default minimum log level is `info`.
Users need to specifically set this property to `debug` to capture *all* log entries.
It is RECOMMENDED that users set the level at least to "warning" in production workflows.
type: string
enum:
Expand Down Expand Up @@ -6626,7 +6627,7 @@ components:
- warning
- info
- debug
default: info
default: debug
service_id:
name: service_id
in: path
Expand Down

0 comments on commit 6ea99c3

Please sign in to comment.