Introduction
In this challenge, you will develop a slice-based log filtering function that processes and extracts relevant log messages. Efficient log filtering is crucial in the fast-paced world of cybersecurity for identifying potential security threats. The goal is to implement the filterLogs
function to filter log messages based on a given keyword, while ensuring the function is case-sensitive and handles empty slices and keywords gracefully. Additionally, the function should return only the message content, excluding timestamps or other metadata.