From 645b5d1a4f8d3b2d2017aa8d4d5972a3ca63035c Mon Sep 17 00:00:00 2001
From: Christian Wulf <chw@informatik.uni-kiel.de>
Date: Sun, 17 Aug 2014 10:29:30 +0200
Subject: [PATCH] added performance logs

---
 conf/logback.groovy                                            | 3 ++-
 .../examples/kiekerdays/KiekerLoadDriver.java                  | 2 +-
 2 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/conf/logback.groovy b/conf/logback.groovy
index 32e3afa2..691e190d 100644
--- a/conf/logback.groovy
+++ b/conf/logback.groovy
@@ -18,4 +18,5 @@ appender("CONSOLE", ConsoleAppender) {
 
 root WARN, ["CONSOLE"]
 
-//logger "teetime.variant.methodcallWithPorts.stage", DEBUG, ["CONSOLE"]
\ No newline at end of file
+//logger "teetime.variant.methodcallWithPorts.stage", DEBUG, ["CONSOLE"]
+logger "teetime.variant.methodcallWithPorts.stage", INFO
\ No newline at end of file
diff --git a/src/test/java/teetime/variant/methodcallWithPorts/examples/kiekerdays/KiekerLoadDriver.java b/src/test/java/teetime/variant/methodcallWithPorts/examples/kiekerdays/KiekerLoadDriver.java
index cc16735d..133b83c5 100644
--- a/src/test/java/teetime/variant/methodcallWithPorts/examples/kiekerdays/KiekerLoadDriver.java
+++ b/src/test/java/teetime/variant/methodcallWithPorts/examples/kiekerdays/KiekerLoadDriver.java
@@ -182,7 +182,7 @@ public class KiekerLoadDriver {
 			recordReceiver.close();
 		}
 
-		PrintStream ps = new PrintStream(new BufferedOutputStream(new FileOutputStream(outputFile, true), 8192 * 8), false, "UTF-8");
+		PrintStream ps = new PrintStream(new BufferedOutputStream(new FileOutputStream(outputFile), 8192 * 8), false, "UTF-8");
 		try {
 			for (long timing : kiekerLoadDriver.timings) {
 				ps.println("0;" + timing);
-- 
GitLab