diff --git a/tailor.py b/tailor.py index 88c1d1a..a35cf45 100755 --- a/tailor.py +++ b/tailor.py @@ -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), ])