Untitled

 avatar
unknown
plain_text
2 years ago
176 B
4
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...