Add initialization log to QueueManager

parent 24bf0c4b
...@@ -33,6 +33,7 @@ class QueueManager: ...@@ -33,6 +33,7 @@ class QueueManager:
"""Manages processing queue and concurrent job execution.""" """Manages processing queue and concurrent job execution."""
def __init__(self): def __init__(self):
print("QueueManager initialized", flush=True)
self.active_jobs = 0 self.active_jobs = 0
self.max_concurrent = get_max_concurrent_jobs() self.max_concurrent = get_max_concurrent_jobs()
self.lock = threading.Lock() self.lock = threading.Lock()
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment