Skip to content

Commit 1415682

Browse files
docs: add info log level to readme (#635)
1 parent e8dc97f commit 1415682

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
@@ -295,12 +295,14 @@ client = Lithic(
295295

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

298-
You can enable logging by setting the environment variable `LITHIC_LOG` to `debug`.
298+
You can enable logging by setting the environment variable `LITHIC_LOG` to `info`.
299299

300300
```shell
301-
$ export LITHIC_LOG=debug
301+
$ export LITHIC_LOG=info
302302
```
303303

304+
Or to `debug` for more verbose logging.
305+
304306
### How to tell whether `None` means `null` or missing
305307

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