Variable: tramp-debug-outline-regexp
tramp-debug-outline-regexp is a variable defined in
tramp-message.el.gz.
Value
"[[:digit:]]+:[[:digit:]]+:[[:digit:]]+\\.[[:digit:]]+[[:blank:]]\\(?:\\(#<thread .+>\\)[[:blank:]]\\)?\\([[:alnum:]-]+\\) (\\([[:digit:]]+\\)) #"
Documentation
Used for highlighting Tramp debug buffers in outline-mode.
When it is used for regexp matching, the regexp groups are
1 for the thread name (optional)
2 for the function name
3 for the verbosity level.
Source Code
;; Defined in /usr/src/emacs/lisp/net/tramp-message.el.gz
(defconst tramp-debug-outline-regexp
(rx ;; Timestamp.
(+ digit) ":" (+ digit) ":" (+ digit) "." (+ digit) blank
;; Thread.
(? (group "#<thread " (+ nonl) ">") blank)
;; Function name, verbosity.
(group (+ (any "-" alnum))) " (" (group (+ digit)) ") #")
"Used for highlighting Tramp debug buffers in `outline-mode'.
When it is used for regexp matching, the regexp groups are
1 for the thread name (optional)
2 for the function name
3 for the verbosity level.")