Variable: org-log-reschedule
org-log-reschedule is a customizable variable defined in org.el.gz.
Value
nil
Documentation
Information to record when the scheduling date of a task is modified.
Possible values are:
nil Don't add anything, just change the date
time Add a time stamp to the task
note Prompt for a note and add it with template org-log-note-headings
This option can also be set with on a per-file-basis with
#+STARTUP: nologreschedule
#+STARTUP: logreschedule
#+STARTUP: lognotereschedule
You can have local logging settings for a subtree by setting the LOGGING property to one or more of these keywords.
This variable has an effect when calling org-schedule or
org-agenda-schedule only.
Source Code
;; Defined in /usr/src/emacs/lisp/org/org.el.gz
(defcustom org-log-reschedule nil
"Information to record when the scheduling date of a task is modified.
Possible values are:
nil Don't add anything, just change the date
time Add a time stamp to the task
note Prompt for a note and add it with template `org-log-note-headings'
This option can also be set with on a per-file-basis with
#+STARTUP: nologreschedule
#+STARTUP: logreschedule
#+STARTUP: lognotereschedule
You can have local logging settings for a subtree by setting the LOGGING
property to one or more of these keywords.
This variable has an effect when calling `org-schedule' or
`org-agenda-schedule' only."
:group 'org-todo
:group 'org-progress
:type '(choice
(const :tag "No logging" nil)
(const :tag "Record timestamp" time)
(const :tag "Record timestamp with note" note)))