blob: 519d2a659a8f7003b980011b9dc71712b9f87c8a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
# see https://wiki.jenkins-ci.org/display/JENKINS/Log+Parser+Plugin
ok /not really/
ok /Error while decoding stream/
# ignore images…
ok /warning\.png/
# suppress warnings from commit messages
ok /HEAD is now at .+/
# match line starting with 'error ', case-insensitive
error /(?i)^error /
# list of warnings here...
warning /[Ww]arning/
warning /WARNING/
# catch lintian warnings and errors
warning /^W: /
warning /^E: /
# create a quick access link to lines in the report containing 'INFO'
info /INFO/
|