Variable: tramp-debug-buffer-limit
tramp-debug-buffer-limit is a customizable variable defined in
tramp-message.el.gz.
Value
104857600
Documentation
The upper limit of a Tramp debug buffer.
If the size of a debug buffer exceeds this limit, a warning is raised. Set it to 0 if there is no limit.
This variable was added, or its default value changed, in Emacs 31.1.
Source Code
;; Defined in /usr/src/emacs/lisp/net/tramp-message.el.gz
(defcustom tramp-debug-buffer-limit (* 100 1024 1024) ;100MB
"The upper limit of a Tramp debug buffer.
If the size of a debug buffer exceeds this limit, a warning is raised.
Set it to 0 if there is no limit."
:group 'tramp
:version "31.1"
:type 'natnum
:link '(info-link :tag "Tramp manual" "(tramp) Traces and Profiles"))