Function: nrepl-toggle-message-logging

nrepl-toggle-message-logging is an interactive and byte-compiled function defined in nrepl-client.el.

Signature

(nrepl-toggle-message-logging)

Documentation

Toggle the value of nrepl-log-messages between nil and t.

This in effect enables or disables the logging of nREPL messages.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/nrepl-client.el
(defun nrepl-toggle-message-logging ()
  "Toggle the value of `nrepl-log-messages' between nil and t.

This in effect enables or disables the logging of nREPL messages."
  (interactive)
  (setq nrepl-log-messages (not nrepl-log-messages))
  (if nrepl-log-messages
      (message "nREPL message logging enabled")
    (message "nREPL message logging disabled")))