Variable: org-agenda-log-mode-items

org-agenda-log-mode-items is a customizable variable defined in org-agenda.el.gz.

Value

(closed clock)

Documentation

List of items that should be shown in agenda log mode.

This list may contain the following symbols:

  closed Show entries that have been closed on that day.
  clock Show entries that have received clocked time on that day.
  state Show all logged state changes.
Note that instead of changing this variable, you can also press C-u (universal-argument) l (org-agenda-log-mode) in the agenda to display all available LOG items temporarily.

Source Code

;; Defined in /usr/src/emacs/lisp/org/org-agenda.el.gz
(defcustom org-agenda-log-mode-items '(closed clock)
  "List of items that should be shown in agenda log mode.
\\<org-agenda-mode-map>\
This list may contain the following symbols:

  closed    Show entries that have been closed on that day.
  clock     Show entries that have received clocked time on that day.
  state     Show all logged state changes.
Note that instead of changing this variable, you can also press \
`\\[universal-argument] \\[org-agenda-log-mode]' in
the agenda to display all available LOG items temporarily."
  :group 'org-agenda-daily/weekly
  :type '(set :greedy t (const closed) (const clock) (const state)))