Skip to content

Commit 6ea99c3

Browse files
committed
Clarified for log levels which default values apply
1 parent 82102c3 commit 6ea99c3

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1111
- `GET /file_formats`: Base paramater on top of normal JSON Schema, not Process JSON Schema
1212
- `PATCH /services/{service_id}` and `PATCH /jobs/{job_id}`: Explicitly allow updating back-end specific properties (as in `POST`)
1313
- `GET /services/{service_id}` and `GET /jobs/{job_id}`: Explicitly allow listing back-end specific properties (as provided in `POST`)
14+
- Clarified for log levels which default values apply
1415

1516
## [1.2.0] - 2021-05-25
1617

openapi.yaml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5895,7 +5895,8 @@ components:
58955895
The order of the levels is as follows (from low to high severity): `debug`, `info`, `warning`, `error`.
58965896
That means if `warning` is set, the back-end will only store log entries with the level `warning` and `error`.
58975897
5898-
The default minimum log level is `info`. Users need to specifically set this property to `debug` to get *all* log entries.
5898+
The default minimum log level is `info`.
5899+
Users need to specifically set this property to `debug` to capture *all* log entries.
58995900
It is RECOMMENDED that users set the level at least to "warning" in production workflows.
59005901
type: string
59015902
enum:
@@ -6626,7 +6627,7 @@ components:
66266627
- warning
66276628
- info
66286629
- debug
6629-
default: info
6630+
default: debug
66306631
service_id:
66316632
name: service_id
66326633
in: path

0 commit comments

Comments
 (0)