A log entry containing the word AttributeError
matches |~ "(Error)"
, but for some reason does not match |~ "(?i)(Error)"
. Seems like (?i)
makes it only match from the word beginning, while it shouldn’t. What am I missing? Or is this a bug?
Strangely, even |~ "(?i)(.*error.*)"
does not match.