diff --git a/README.md b/README.md index 7dffb678..e768ed49 100644 --- a/README.md +++ b/README.md @@ -255,12 +255,14 @@ client = Finch( We use the standard library [`logging`](https://docs.python.org/3/library/logging.html) module. -You can enable logging by setting the environment variable `FINCH_LOG` to `debug`. +You can enable logging by setting the environment variable `FINCH_LOG` to `info`. ```shell -$ export FINCH_LOG=debug +$ export FINCH_LOG=info ``` +Or to `debug` for more verbose logging. + ### How to tell whether `None` means `null` or missing 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`: