You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When using the default Java-based configuration, the ThresholdFilter is never started so it has no effect. It may work if you use XML and import Boot's config.
When using the default Java-based configuration, the ThresholdFilter is never started so it has no effect. It may work if you use XML and import Boot's config.
Hi!
Could not we just start the filter when the default configuration is applied? I tried this locally and it does work.
The property
logging.threshold.console
does not seem to work.https://docs.spring.io/spring-boot/docs/3.1.2/reference/htmlsingle/#application-properties.core.logging.threshold.console
Steps to reproduce:
./gradlew bootJar
java -jar .\build\libs\demo-0.0.1-SNAPSHOT.jar --logging.threshold.console=error
Expected Result:
I'd expect to only see the Spring-Banner, but no info messages, as the threshold should only allow errors to be printed to the console.
Actual Result
The text was updated successfully, but these errors were encountered: