diff --git a/whisper-2023/hotwords.py b/whisper-2023/hotwords.py index f4cb1e9..b55c82d 100644 --- a/whisper-2023/hotwords.py +++ b/whisper-2023/hotwords.py @@ -113,7 +113,9 @@ class Parser(threading.Thread): while True: try: if environ.get("DEBUG", None): - log(self.inq.qsize()) + backlog = self.inq.qsize() + if backlog: + log("Parser.run backlog", backlog) clip = self.inq.get() if clip is None: break