Skip to content

Commit b698799

Browse files
docs: add info log level to readme (#527)
1 parent 3dfd61b commit b698799

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
@@ -255,12 +255,14 @@ client = Finch(
255255

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

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

260260
```shell
261-
$ export FINCH_LOG=debug
261+
$ export FINCH_LOG=info
262262
```
263263

264+
Or to `debug` for more verbose logging.
265+
264266
### How to tell whether `None` means `null` or missing
265267

266268
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)