[BAEL-17473] - Retired spring-boot-disable-console-logging
This commit is contained in:
parent
0518c39a4f
commit
7a70863a29
22
pom.xml
22
pom.xml
|
@ -684,17 +684,20 @@
|
|||
<module>spring-boot-crud</module>
|
||||
<module>spring-boot-ctx-fluent</module>
|
||||
<module>spring-boot-custom-starter</module>
|
||||
<module>spring-boot-disable-console-logging</module>
|
||||
<!-- <module>spring-boot-gradle</module> --> <!-- Not a maven project -->
|
||||
<module>spring-boot-jasypt</module>
|
||||
<module>spring-boot-keycloak</module>
|
||||
<module>spring-boot-kotlin</module>
|
||||
<module>spring-boot-logging-log4j2</module>
|
||||
<module>spring-boot-management</module>
|
||||
<module>spring-boot-mvc</module>
|
||||
<module>spring-boot-mvc-birt</module>
|
||||
<module>spring-boot-ops</module>
|
||||
<module>spring-boot-ops-2</module>
|
||||
<module>spring-boot-environment</module>
|
||||
<module>spring-boot-deployment</module>
|
||||
<module>spring-boot-runtime</module>
|
||||
<module>spring-boot-runtime/disabling-console-jul</module>
|
||||
<module>spring-boot-runtime/disabling-console-log4j2</module>
|
||||
<module>spring-boot-runtime/disabling-console-logback</module>
|
||||
<module>spring-boot-artifacts</module>
|
||||
<module>spring-boot-rest</module>
|
||||
<module>spring-boot-data</module>
|
||||
<module>spring-boot-parent</module>
|
||||
|
@ -1404,16 +1407,19 @@
|
|||
<module>spring-boot-crud</module>
|
||||
<module>spring-boot-ctx-fluent</module>
|
||||
<module>spring-boot-custom-starter</module>
|
||||
<module>spring-boot-disable-console-logging</module>
|
||||
<!-- <module>spring-boot-gradle</module> --> <!-- Not a maven project -->
|
||||
<module>spring-boot-jasypt</module>
|
||||
<module>spring-boot-keycloak</module>
|
||||
<module>spring-boot-logging-log4j2</module>
|
||||
<module>spring-boot-management</module>
|
||||
<module>spring-boot-mvc</module>
|
||||
<module>spring-boot-mvc-birt</module>
|
||||
<module>spring-boot-ops</module>
|
||||
<module>spring-boot-ops-2</module>
|
||||
<module>spring-boot-environment</module>
|
||||
<module>spring-boot-deployment</module>
|
||||
<module>spring-boot-runtime</module>
|
||||
<module>spring-boot-runtime/disabling-console-jul</module>
|
||||
<module>spring-boot-runtime/disabling-console-log4j2</module>
|
||||
<module>spring-boot-runtime/disabling-console-logback</module>
|
||||
<module>spring-boot-artifacts</module>
|
||||
<module>spring-boot-rest</module>
|
||||
<module>spring-boot-data</module>
|
||||
<module>spring-boot-parent</module>
|
||||
|
|
|
@ -1,6 +0,0 @@
|
|||
## Spring Boot Disable Console Logging
|
||||
|
||||
This module contains articles about disabling Spring Boot console logging.
|
||||
|
||||
### Relevant Articles:
|
||||
- [How to Disable Console Logging in Spring Boot](https://www.baeldung.com/spring-boot-disable-console-logging)
|
|
@ -1,21 +0,0 @@
|
|||
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<artifactId>spring-boot-disable-console-logging</artifactId>
|
||||
<name>spring-boot-disable-console-logging</name>
|
||||
<packaging>pom</packaging>
|
||||
<description>Projects for Disabling Spring Boot Console Logging tutorials</description>
|
||||
|
||||
<parent>
|
||||
<artifactId>parent-boot-2</artifactId>
|
||||
<groupId>com.baeldung</groupId>
|
||||
<version>0.0.1-SNAPSHOT</version>
|
||||
<relativePath>../parent-boot-2</relativePath>
|
||||
</parent>
|
||||
|
||||
<modules>
|
||||
<module>disabling-console-logback</module>
|
||||
<module>disabling-console-log4j2</module>
|
||||
<module>disabling-console-jul</module>
|
||||
</modules>
|
||||
</project>
|
|
@ -2,4 +2,5 @@
|
|||
- [Shutdown a Spring Boot Application](https://www.baeldung.com/spring-boot-shutdown)
|
||||
- [Comparing Embedded Servlet Containers in Spring Boot](https://www.baeldung.com/spring-boot-servlet-containers)
|
||||
- [Programmatically Restarting a Spring Boot Application](https://www.baeldung.com/java-restart-spring-boot-app)
|
||||
- [Logging HTTP Requests with Spring Boot Actuator HTTP Tracing](https://www.baeldung.com/spring-boot-actuator-http)
|
||||
- [Logging HTTP Requests with Spring Boot Actuator HTTP Tracing](https://www.baeldung.com/spring-boot-actuator-http)
|
||||
- [How to Disable Console Logging in Spring Boot](https://www.baeldung.com/spring-boot-disable-console-logging)
|
Loading…
Reference in New Issue