Log Analyzer Overview Parses and analyzes log files to extract errors, warnings, patterns, and actionable insights. When to Use - User asks to "analyze these logs" or "check the error log" - Debugging session needs pattern analysis How It Works Step 1: Read log file Windows: type server.log or Get-Content error.log -Tail 100 macOS/Linux: tail -n 100 app.log Step 2: Detect log format [2024-01-15 14:30:45] - Timestamp bracketed ERROR 2024-01-15 - Level + timestamp { "level": "error" } - JSON structured Step 3: Extract key information Level: ERROR, WARN, INFO, DEBUG Timestamp: when it happened S…