diff options
author | Yann Ylavic <ylavic@apache.org> | 2024-10-11 15:03:42 +0200 |
---|---|---|
committer | Yann Ylavic <ylavic@apache.org> | 2024-10-11 15:03:42 +0200 |
commit | f6c5c4b6c7acffb3f1a88a05729036a8a693ba60 (patch) | |
tree | baa434b0d0ff1b97534465e8a506adc060aab7ae /docs | |
parent | ab: Map -c0 to -c<number of workers>. PR 69383 (diff) | |
download | apache2-f6c5c4b6c7acffb3f1a88a05729036a8a693ba60.tar.xz apache2-f6c5c4b6c7acffb3f1a88a05729036a8a693ba60.zip |
Document the %{cuz}t and %{<strftime-format>}t time formats for ErrorLogFormat.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1921257 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'docs')
-rw-r--r-- | docs/manual/mod/core.xml | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/docs/manual/mod/core.xml b/docs/manual/mod/core.xml index bd61ec0a2f..eb5aaac818 100644 --- a/docs/manual/mod/core.xml +++ b/docs/manual/mod/core.xml @@ -1762,6 +1762,15 @@ ErrorLogFormat "[%t] [%l] [pid %P] %F: %E: [client %a] %M" <td>The current time in compact ISO 8601 format, including micro-seconds</td></tr> + <tr><td><code>%{cuz}t</code></td> + <td>The current time in compact ISO 8601 format, including + micro-seconds and time zone in the ISO 8601:2000 standard format + (+hhmm or -hhmm offset from UTC). Since 2.4.58 only</td></tr> + + <tr><td><code>%{<strftime-format>}t</code></td> + <td>The current time formatted per the <code>strftime(3)</code> + function. Since 2.4.58 only</td></tr> + <tr><td><code>%v</code></td> <td>The canonical <directive module="core">ServerName</directive> of the current server.</td></tr> |