Function: erc-log

erc-log is a byte-compiled function defined in erc-common.el.gz.

Signature

(erc-log STRING)

Documentation

Logs STRING if logging is on (see erc-log-p).

Source Code

;; Defined in /usr/src/emacs/lisp/erc/erc-common.el.gz
(define-inline erc-log (string)
  "Logs STRING if logging is on (see `erc-log-p')."
  (inline-quote
   (when erc-log-p
     (erc-log-aux ,string))))