Skip to content
Snippets Groups Projects
Commit fa8a0e54 authored by Christian Wulf's avatar Christian Wulf
Browse files

changed missing Kieker logger to slf4j logger

parent 16231855
No related branches found
No related tags found
No related merge requests found
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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment