From cb76502a440a027ac142303d2cae168d9f08edcf Mon Sep 17 00:00:00 2001 From: Andy Wilkinson Date: Tue, 5 Nov 2019 10:28:39 +0000 Subject: [PATCH] Document that JUL is not bridged into SLF4J when deployed to a container Closes gh-16062 --- .../src/main/asciidoc/spring-boot-features.adoc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/spring-boot-project/spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc b/spring-boot-project/spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc index d9b7115373..e89beb2065 100644 --- a/spring-boot-project/spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc +++ b/spring-boot-project/spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc @@ -1371,6 +1371,8 @@ TIP: There are a lot of logging frameworks available for Java. Do not worry if the above list seems confusing. Generally, you do not need to change your logging dependencies and the Spring Boot defaults work just fine. +TIP: When you deploy your application to a servlet container or application server, logging performed via the Java Util Logging API is not routed into your application's logs. +This prevents logging performed by the container or other applications that have been deployed to it from appearing in your application's logs. [[boot-features-logging-format]]