Skip to content

Commit f24c8ca

Browse files
docs: add info log level to readme (#438)
1 parent e06bf57 commit f24c8ca

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
@@ -267,12 +267,14 @@ Note that requests that time out are [retried twice by default](#retries).
267267

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

270-
You can enable logging by setting the environment variable `ORB_LOG` to `debug`.
270+
You can enable logging by setting the environment variable `ORB_LOG` to `info`.
271271

272272
```shell
273-
$ export ORB_LOG=debug
273+
$ export ORB_LOG=info
274274
```
275275

276+
Or to `debug` for more verbose logging.
277+
276278
### How to tell whether `None` means `null` or missing
277279

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