diff options
author | Yann Ylavic <ylavic@apache.org> | 2024-10-11 17:58:03 +0200 |
---|---|---|
committer | Yann Ylavic <ylavic@apache.org> | 2024-10-11 17:58:03 +0200 |
commit | 336fa82b4bbef4b366f7e7872ea749663911df18 (patch) | |
tree | e748af1ac7f0675e5cd244f27cb317c7f4e15252 /docs | |
parent | xforms [skip ci] (diff) | |
download | apache2-336fa82b4bbef4b366f7e7872ea749663911df18.tar.xz apache2-336fa82b4bbef4b366f7e7872ea749663911df18.zip |
ErrorLogFormat %{c}t is actually what ISO 8601 calls "extended" format.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1921259 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'docs')
-rw-r--r-- | docs/manual/mod/core.xml | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/docs/manual/mod/core.xml b/docs/manual/mod/core.xml index eb5aaac818..14cef7a89c 100644 --- a/docs/manual/mod/core.xml +++ b/docs/manual/mod/core.xml @@ -1759,15 +1759,15 @@ ErrorLogFormat "[%t] [%l] [pid %P] %F: %E: [client %a] %M" <td>The current time including micro-seconds</td></tr> <tr><td><code>%{cu}t</code></td> - <td>The current time in compact ISO 8601 format, including + <td>The current time in ISO 8601 extended format (compact), 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> + <td>The current time in ISO 8601 extended format (compact), including + micro-seconds and time zone in the ISO 8601:2000 standard format. + Since 2.4.58 only</td></tr> - <tr><td><code>%{<strftime-format>}t</code></td> + <tr><td><code>%{<%-format>}t</code></td> <td>The current time formatted per the <code>strftime(3)</code> function. Since 2.4.58 only</td></tr> |