]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
Document the %{cuz}t and %{<strftime-format>}t time formats for ErrorLogFormat.
authorYann Ylavic <ylavic@apache.org>
Fri, 18 Oct 2024 12:58:05 +0000 (12:58 +0000)
committerYann Ylavic <ylavic@apache.org>
Fri, 18 Oct 2024 12:58:05 +0000 (12:58 +0000)
ErrorLogFormat %{c}t is actually what ISO 8601 calls "extended" format.

Improve ErrorLogFormat's %{cuz}t and %{%-format}t descriptions.

Merges r1921257, r1921259, r1921399 from trunk
[docs CTR, available since 2.4.58]

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@1921401 13f79535-47bb-0310-9956-ffa450edef68

docs/manual/mod/core.xml

index fc7731b14db88411200e338e799b782fb17c7eb3..a4239d5a6522955986287ae17cc368793ef87df8 100644 (file)
@@ -1737,9 +1737,18 @@ 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 ISO 8601 extended format (compact), including
+            micro-seconds and time zone in the ISO 8601:2000 standard format.
+            Available since 2.4.58 only</td></tr>
+
+    <tr><td><code>%{%-format}t</code></td>
+       <td>The current time formatted per the <code>strftime(3)</code> function.
+           Available 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>