From fa8a0e548a53df806ecc721765e31583a47b8e6a Mon Sep 17 00:00:00 2001
From: Christian Wulf <chw@informatik.uni-kiel.de>
Date: Mon, 11 Aug 2014 07:29:32 +0200
Subject: [PATCH] changed missing Kieker logger to slf4j logger

---
 .../methodcallWithPorts/framework/core/RunnableStage.java | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

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 6c5e6057..f2ff6c73 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
-- 
GitLab