upd logging section

This commit is contained in:
onyx-and-iris 2026-03-23 12:05:09 +00:00
parent 428db5bead
commit 77d252ebe2

View File

@ -76,7 +76,13 @@ def on_twitch_event(event, data):
### Logging
To view raw incoming event data set logging level to DEBUG. Check `debug` example.
To view the logs emitted by the streamlabsio library simply add the following to your code:
```python
from loguru import logger
logger.enable('streamlabsio')
```
### Official Documentation