@harrymc: you would propose something like
^.* | Debug | .*$
where ^
stands for "beginning of line", $
stands for "end of line", .*
stands for "any number of any characters" and let's hope that |
is not treated as an logical OR
character like in UNIX grep -E
command?