🔍 Filter Syntax Examples: error - Simple text match error OR warning - Lines containing either term user123 AND login - Lines containing both terms "exact phrase" - Exact phrase matching (use quotes for literal OR/AND) (error OR warning) AND critical - Grouped conditions failed AND (login OR auth) - Complex combinations ⚠️ Literal OR/AND: "ANDROID device" - Use quotes to search for literal "AND" \ANDROID - Use backslash to escape logical operators
{% if start_line and end_line %}
Showing lines {{ start_line }} to {{ end_line }} ; reached EOF: {{ reached_EOF }}
{% elif start_line %}
Showing entire file from line {{ start_line }} ; reached EOF: {{ reached_EOF }}
{% end %}