You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@isis.apache.org by ah...@apache.org on 2019/12/12 16:20:36 UTC

[isis] 02/02: ISIS-2177: remove debugging class

This is an automated email from the ASF dual-hosted git repository.

ahuber pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/isis.git

commit 1724a6687cca8e583260c35628bed6d0c1778625
Author: Andi Huber <ah...@apache.org>
AuthorDate: Thu Dec 12 17:20:23 2019 +0100

    ISIS-2177: remove debugging class
---
 .../boot/LoggingSpringApplicationRunListener.java  | 55 ----------------------
 1 file changed, 55 deletions(-)

diff --git a/core/runtime/src/main/java/org/apache/isis/runtime/boot/LoggingSpringApplicationRunListener.java b/core/runtime/src/main/java/org/apache/isis/runtime/boot/LoggingSpringApplicationRunListener.java
deleted file mode 100644
index 6388ecf..0000000
--- a/core/runtime/src/main/java/org/apache/isis/runtime/boot/LoggingSpringApplicationRunListener.java
+++ /dev/null
@@ -1,55 +0,0 @@
-package org.apache.isis.runtime.boot;
-
-import lombok.extern.log4j.Log4j2;
-
-import org.springframework.boot.SpringApplication;
-import org.springframework.boot.SpringApplicationRunListener;
-import org.springframework.context.ConfigurableApplicationContext;
-import org.springframework.core.env.ConfigurableEnvironment;
-
-@Log4j2
-public class LoggingSpringApplicationRunListener implements SpringApplicationRunListener {
-    private SpringApplication app;
-    private String[] args;
-
-    public LoggingSpringApplicationRunListener(SpringApplication app, String[] args){
-        this.app = app;
-        this.args = args;
-    }
-
-    @Override
-    public void starting() {
-        log.debug("starting");
-    }
-
-    @Override
-    public void environmentPrepared(ConfigurableEnvironment environment) {
-        log.debug("environmentPrepared");
-    }
-
-    @Override
-    public void contextPrepared(ConfigurableApplicationContext context) {
-        log.debug("contextPrepared");
-    }
-
-    @Override
-    public void contextLoaded(ConfigurableApplicationContext context) {
-        log.debug("contextLoaded");
-    }
-
-    @Override
-    public void started(ConfigurableApplicationContext context) {
-        log.debug("started");
-    }
-
-    @Override
-    public void running(ConfigurableApplicationContext context) {
-        log.debug("running");
-    }
-
-    @Override
-    public void failed(ConfigurableApplicationContext context, Throwable exception) {
-        log.error("failed", exception);
-    }
-
-}
\ No newline at end of file