Update filtering to remove "Calling on..."

This commit is contained in:
McCloudS
2024-11-17 18:17:51 -07:00
committed by GitHub
parent d10908c14c
commit da41f820f5

View File

@@ -109,7 +109,7 @@ def transcription_worker():
for _ in range(concurrent_transcriptions):
threading.Thread(target=transcription_worker, daemon=True).start()
# Define a filter class
# Define a filter class to hide common logging we don't want to see
class MultiplePatternsFilter(logging.Filter):
def filter(self, record):
# Define the patterns to search for
@@ -127,6 +127,7 @@ class MultiplePatternsFilter(logging.Filter):
"misdetection possible",
"srt was added",
"doesn't have any audio to transcribe",
"Calling on_"
]
# Return False if any of the patterns are found, True otherwise
return not any(pattern in record.getMessage() for pattern in patterns)