summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthias Andreas Benkard <code@mail.matthias.benkard.de>2022-01-15 21:29:53 +0100
committerMatthias Andreas Benkard <code@mail.matthias.benkard.de>2022-01-15 21:29:53 +0100
commitef37709535a1e9cccd000c42a67e732092e1c9c7 (patch)
tree0226566040bdbdd6b860d14044c750cdc002216c
parent6dfc6ffc852c422c1678bafa2ec470ffb41743d5 (diff)
Spring Boot example: Remove unused class ApplicationLoggingSystem.
Change-Id: I75ce46a6116a02339d2b8e0c6e634cee294d86dd
-rw-r--r--examples/spring-boot/src/main/java/eu/mulk/quarkus/googlecloud/jsonlogging/example/ApplicationLoggingSystem.java22
1 files changed, 0 insertions, 22 deletions
diff --git a/examples/spring-boot/src/main/java/eu/mulk/quarkus/googlecloud/jsonlogging/example/ApplicationLoggingSystem.java b/examples/spring-boot/src/main/java/eu/mulk/quarkus/googlecloud/jsonlogging/example/ApplicationLoggingSystem.java
deleted file mode 100644
index 4050b99..0000000
--- a/examples/spring-boot/src/main/java/eu/mulk/quarkus/googlecloud/jsonlogging/example/ApplicationLoggingSystem.java
+++ /dev/null
@@ -1,22 +0,0 @@
-package eu.mulk.quarkus.googlecloud.jsonlogging.example;
-
-import org.springframework.boot.logging.LogFile;
-import org.springframework.boot.logging.LoggingInitializationContext;
-import org.springframework.boot.logging.Slf4JLoggingSystem;
-
-public class ApplicationLoggingSystem extends Slf4JLoggingSystem {
-
- public ApplicationLoggingSystem(ClassLoader classLoader) {
- super(classLoader);
- }
-
- @Override
- protected String[] getStandardConfigLocations() {
- return new String[0];
- }
-
- @Override
- protected void loadDefaults(LoggingInitializationContext initializationContext, LogFile logFile) {
- /* no configuration necessary */
- }
-}