Variable: org-log-note-clock-out

org-log-note-clock-out is a customizable variable defined in org.el.gz.

Value

nil

Documentation

Non-nil means record a note when clocking out of an item.

This can also be configured on a per-file basis by adding one of the following lines anywhere in the buffer:

   #+STARTUP: lognoteclock-out
   #+STARTUP: nolognoteclock-out

Source Code

;; Defined in /usr/src/emacs/lisp/org/org.el.gz
(defcustom org-log-note-clock-out nil
  "Non-nil means record a note when clocking out of an item.
This can also be configured on a per-file basis by adding one of
the following lines anywhere in the buffer:

   #+STARTUP: lognoteclock-out
   #+STARTUP: nolognoteclock-out"
  :group 'org-todo
  :group 'org-progress
  :type 'boolean)