tailor.py: ajouter l'analyse de php fatal error

This commit is contained in:
Jephté Clain 2018-06-18 23:18:07 +04:00
parent 775bc8eee6
commit 7676c7635a
1 changed files with 3 additions and 2 deletions

View File

@ -34,8 +34,9 @@ APACHE_PATTERNS = OrderedDict([
(None, nonef),
])
PHP_PATTERNS = OrderedDict([
(r'(?i)php notice', redf),
(r'(?i)php warning', yellowf),
(r'(?i)php fatal error', redf),
(r'(?i)php notice', yellowf),
(r'(?i)php warning', bluef),
(None, nonef),
])