diff --git a/src/main/java/teetime/variant/methodcallWithPorts/framework/core/RunnableStage.java b/src/main/java/teetime/variant/methodcallWithPorts/framework/core/RunnableStage.java index 6c5e60577a4ffa8d8b1cd8392b0516dae1b511d0..f2ff6c73ddb016674710b52845b3b9b3712d40b9 100644 --- a/src/main/java/teetime/variant/methodcallWithPorts/framework/core/RunnableStage.java +++ b/src/main/java/teetime/variant/methodcallWithPorts/framework/core/RunnableStage.java @@ -1,16 +1,16 @@ package teetime.variant.methodcallWithPorts.framework.core; -import kieker.common.logging.Log; -import kieker.common.logging.LogFactory; +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; public class RunnableStage implements Runnable { private final StageWithPort stage; - private final Log logger; + private final Logger logger; public RunnableStage(final StageWithPort stage) { this.stage = stage; - this.logger = LogFactory.getLog(stage.getClass()); + this.logger = LoggerFactory.getLogger(stage.getClass()); } @Override