From d2baa164d4bda2c5a14a1fe68f4348237e241161 Mon Sep 17 00:00:00 2001 From: Kepka Ludovic Date: Sat, 13 Sep 2025 00:25:58 +0200 Subject: [PATCH] Ajout de log pour la notification de live --- twitchbot/live_alert.py | 1 + 1 file changed, 1 insertion(+) diff --git a/twitchbot/live_alert.py b/twitchbot/live_alert.py index 8eb8ed6..ffda05c 100644 --- a/twitchbot/live_alert.py +++ b/twitchbot/live_alert.py @@ -38,6 +38,7 @@ async def _sendMessage(channel : int, message : str) : async def _retreiveStreams(twitch: Twitch, alerts : list[LiveAlert]) -> list[Stream] : streams : list[Stream] = [] + logging.info(f'Recherche de streams pour : {alerts}') async for stream in twitch.get_streams(user_login = [alert.login for alert in alerts]): streams.append(stream) logging.info(f'Ces streams sont en ligne : {streams}')