Skip to content

Commit 8b0ec68

Browse files
docs: add info log level to readme (#527)
1 parent a33b1ec commit 8b0ec68

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

README.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -278,12 +278,14 @@ client = Finch(
278278

279279
We use the standard library [`logging`](https://docs.python.org/3/library/logging.html) module.
280280

281-
You can enable logging by setting the environment variable `FINCH_LOG` to `debug`.
281+
You can enable logging by setting the environment variable `FINCH_LOG` to `info`.
282282

283283
```shell
284-
$ export FINCH_LOG=debug
284+
$ export FINCH_LOG=info
285285
```
286286

287+
Or to `debug` for more verbose logging.
288+
287289
### How to tell whether `None` means `null` or missing
288290

289291
In an API response, a field may be explicitly `null`, or missing entirely; in either case, its value is `None` in this library. You can differentiate the two cases with `.model_fields_set`:

0 commit comments

Comments
 (0)