log file shard

This commit is contained in:
KubaPro010
2025-11-08 20:31:55 +01:00
parent da209d129e
commit 55fa91a1a2
5 changed files with 23 additions and 5 deletions
+5 -1
View File
@@ -1,7 +1,11 @@
from . import PlayerModule, log95, Track
import os
logger = log95.log95("PlayView")
from typing import TextIO
_log_file: TextIO
assert _log_file # pyright: ignore[reportUnboundVariable]
logger = log95.log95("PlayView", output=_log_file)
class Module(PlayerModule):
def __init__(self) -> None: