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."
  (jsonrpc--log-event
   server (if (stringp format)
              `(:message ,(apply #'format format args))
            format)))