Variable: org-log-redeadline

org-log-redeadline is a customizable variable defined in org.el.gz.

Value

nil

Documentation

Information to record when the deadline 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: nologredeadline
   #+STARTUP: logredeadline
   #+STARTUP: lognoteredeadline

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-deadline or org-agenda-deadline only.

Source Code

;; Defined in /usr/src/emacs/lisp/org/org.el.gz
(defcustom org-log-redeadline nil
  "Information to record when the deadline 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: nologredeadline
   #+STARTUP: logredeadline
   #+STARTUP: lognoteredeadline

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-deadline' or
`org-agenda-deadline' 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)))