BarginBots / src /config /logging_queue.py
SHAH-MEER's picture
Upload folder using huggingface_hub
0cb1870 verified
raw
history blame contribute delete
137 Bytes
"""Initializes a thread-safe global log queue.
Used to manage log messages across threads.
"""
import queue
log_queue = queue.Queue()