From 77d252ebe2fdb6e751741178364e326e5f19162c Mon Sep 17 00:00:00 2001 From: onyx-and-iris Date: Mon, 23 Mar 2026 12:05:09 +0000 Subject: [PATCH] upd logging section --- README.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 6ad22d5..28633c5 100644 --- a/README.md +++ b/README.md @@ -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