From 5913de0221468dd21a617750aaa385096fd0ec2f Mon Sep 17 00:00:00 2001 From: Guillaume Nodet Date: Thu, 26 Sep 2019 22:16:49 +0200 Subject: [PATCH] Support for daemons --- .../java/org/jboss/fuse/mvnd/logging/smart/MavenLoggingSpy.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/org/jboss/fuse/mvnd/logging/smart/MavenLoggingSpy.java b/src/main/java/org/jboss/fuse/mvnd/logging/smart/MavenLoggingSpy.java index 9a0a4f16..3a6682cb 100644 --- a/src/main/java/org/jboss/fuse/mvnd/logging/smart/MavenLoggingSpy.java +++ b/src/main/java/org/jboss/fuse/mvnd/logging/smart/MavenLoggingSpy.java @@ -35,12 +35,12 @@ public class MavenLoggingSpy extends AbstractLoggingSpy { @Override public void init(Context context) throws Exception { + super.init(context); terminal = (Terminal) context.getData().get("terminal"); if (terminal == null) { terminal = TerminalBuilder.terminal(); } display = new Display(terminal, false); - super.init(context); } @Override