Function: proced-log-summary

proced-log-summary is a byte-compiled function defined in proced.el.gz.

Signature

(proced-log-summary SIGNAL STRING)

Documentation

State a summary of SIGNAL's failures, in echo area and log buffer.

STRING is an overall summary of the failures.

Source Code

;; Defined in /usr/src/emacs/lisp/proced.el.gz
;; similar to `dired-log-summary'
(defun proced-log-summary (signal string)
  "State a summary of SIGNAL's failures, in echo area and log buffer.
STRING is an overall summary of the failures."
  (message "Signal %s: %s--type ? for details" signal string)
  ;; Log a summary describing a bunch of errors.
  (proced-log (concat "\n" string "\n"))
  (proced-log t signal))