add logging instructions

This commit is contained in:
willi pink 2022-10-07 13:11:25 +02:00
parent 027c04935f
commit 64afcd3459

View File

@ -96,3 +96,10 @@ python manage.py test
```bash
source pyenv/bin/activate
```
# logging
```python
import logging
logger = logging.getLogger(__name__)
logger.error('foo')
```