Untitled

Anonymous
plain_text
04/28/2023 7:51 AM
236 B
19
Indexable
# Define the filter function
def filter_log_data(line, important_words):
    for word in important_words:
        if word in line:
            return True
    return False
Editor is loading...