Browse Source

Merge branch '3.1.x'

Closes gh-38425
pull/38482/head
Phillip Webb 2 years ago
parent
commit
84ddeea1a4
  1. 4
      spring-boot-project/spring-boot-docs/src/docs/asciidoc/howto/webserver.adoc

4
spring-boot-project/spring-boot-docs/src/docs/asciidoc/howto/webserver.adoc

@ -355,7 +355,7 @@ For instance, the following settings log access on Tomcat with a {tomcat-docs}/c @@ -355,7 +355,7 @@ For instance, the following settings log access on Tomcat with a {tomcat-docs}/c
basedir: "my-tomcat"
accesslog:
enabled: true
pattern: "%t %a %r %s (%D ms)"
pattern: "%t %a %r %s (%D microseconds)"
----
NOTE: The default location for logs is a `logs` directory relative to the Tomcat base directory.
@ -370,7 +370,7 @@ Access logging for Undertow can be configured in a similar fashion, as shown in @@ -370,7 +370,7 @@ Access logging for Undertow can be configured in a similar fashion, as shown in
undertow:
accesslog:
enabled: true
pattern: "%t %a %r %s (%D ms)"
pattern: "%t %a %r %s (%D milliseconds)"
options:
server:
record-request-start-time: true

Loading…
Cancel
Save