diff options
-rw-r--r-- | logparse/debian-installer.rules | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/logparse/debian-installer.rules b/logparse/debian-installer.rules index 28d506fa..282d9080 100644 --- a/logparse/debian-installer.rules +++ b/logparse/debian-installer.rules @@ -39,10 +39,14 @@ ok /^dpkg-genchanges: warning: the current version .+ is earlier than the previo # match line starting with 'error ', case-insensitive error /(?i)^error / +# suppress warnings in configure questiosn +ok /warning.+\[N\/y\/\?\] n/ +ok /warning.+\[Y\/n\/\?\] y/ + # list of warnings here... warning /[Ww]arning/ warning /WARNING/ # create a quick access link to lines in the report containing 'INFO' -info /INFO/ +info /^INFO.*/ |