log4-hi-mode.el
changeset 1134 d91fa7f7033a
parent 1083 d4b063fc0f5e
child 1136 26996dddc80f
equal deleted inserted replaced
1133:ca0a819ff8c5 1134:d91fa7f7033a
    15   '((t :inherit font-lock-function-name-face))
    15   '((t :inherit font-lock-function-name-face))
    16   "Face for functions in trace.")
    16   "Face for functions in trace.")
    17 
    17 
    18 (defvar log4-hi-keywords
    18 (defvar log4-hi-keywords
    19   '(("FATAL\\|ERROR" . 'log4-hi-error-face)
    19   '(("FATAL\\|ERROR" . 'log4-hi-error-face)
    20     ("WARN" . 'log4-hi-warn-face)
    20     ("WARN\\|SEVERE" . 'log4-hi-warn-face)
    21     ("INFO\\|DEBUG\\|TRACE" . 'log4-hi-info-face) ))
    21     ("INFO\\|DEBUG\\|TRACE" . 'log4-hi-info-face) ))
    22 
    22 
    23 (defvar log4-func-hi-keywords
    23 (defvar log4-func-hi-keywords
    24   '(("at [[:alnum:].]+\\.\\([[:alnum:]$]+\\.[[:alnum:]$<>]+\\)([[:alnum:]]+\\.java:[0-9]+)" 1 'log4-hi-func-face) ))
    24   '(("at [[:alnum:].]+\\.\\([[:alnum:]$]+\\.[[:alnum:]$<>]+\\)([[:alnum:]]+\\.java:[0-9]+)" 1 'log4-hi-func-face) ))
    25 
    25