You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+10
Original file line number
Diff line number
Diff line change
@@ -274,6 +274,16 @@ client = Finch(
274
274
275
275
## Advanced
276
276
277
+
### Logging
278
+
279
+
We use the standard library [`logging`](https://docs.python.org/3/library/logging.html) module.
280
+
281
+
You can enable logging by setting the environment variable `FINCH_LOG` to `debug`.
282
+
283
+
```shell
284
+
$ export FINCH_LOG=debug
285
+
```
286
+
277
287
### How to tell whether `None` means `null` or missing
278
288
279
289
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