Untitled
unknown
plain_text
3 years ago
176 B
10
Indexable
# Define the filter function
def filter_log_data(line, important_words):
for word in important_words:
if word in line:
return True
return FalseEditor is loading...