Function: jsonrpc--debug
jsonrpc--debug is a byte-compiled function defined in jsonrpc.el.gz.
Signature
(jsonrpc--debug SERVER FORMAT &rest ARGS)
Documentation
Debug message for SERVER with FORMAT and ARGS.
Source Code
;; Defined in /usr/src/emacs/lisp/jsonrpc.el.gz
(defun jsonrpc--debug (server format &rest args)
"Debug message for SERVER with FORMAT and ARGS."
(with-current-buffer (jsonrpc-events-buffer server)
(jsonrpc--log-event
server 'internal
:log-text (apply #'format format args)
:type 'debug)))