Update logging

This commit is contained in:
2025-04-21 18:09:07 +02:00
parent 288e4769bc
commit f9995acf3d
2 changed files with 5 additions and 0 deletions

View File

@@ -10,6 +10,8 @@ from applications.games_list.games_list import GameList, GameItem
from core.config import config from core.config import config
logging.basicConfig(level=logging.INFO)
logger = logging.getLogger(__name__) logger = logging.getLogger(__name__)
logger.setLevel(logging.INFO) logger.setLevel(logging.INFO)

View File

@@ -15,7 +15,10 @@ from applications.twitch_webhook.reward_redemption import RewardRedemption
from .authorize import authorize from .authorize import authorize
logging.basicConfig(level=logging.INFO)
logger = logging.getLogger(__name__) logger = logging.getLogger(__name__)
logger.setLevel(logging.INFO)
class TwitchService: class TwitchService: