Logging: log method names at INFO level, also log API return data at DEBUG level

This commit is contained in:
Hugo van Kemenade 2022-03-03 13:15:26 +02:00
parent 5c9509dfc4
commit dd8836e59b
2 changed files with 8 additions and 4 deletions

View file

@ -144,7 +144,8 @@ To enable from your own code:
import logging
import pylast
logging.basicConfig(level=logging.DEBUG)
logging.basicConfig(level=logging.INFO)
network = pylast.LastFMNetwork(...)
```
@ -152,5 +153,8 @@ network = pylast.LastFMNetwork(...)
To enable from pytest:
```sh
pytest --log-cli-level debug -k test_album_search_images
pytest --log-cli-level info -k test_album_search_images
```
To also see data returned from the API, use `level=logging.DEBUG` or
`--log-cli-level debug` instead.