From a8a5f07a85791ba493ad6bbc60dd8a3f6573a04e Mon Sep 17 00:00:00 2001
From: Christian Heller <c.heller@plomlompom.de>
Date: Sat, 7 Nov 2015 21:37:17 +0100
Subject: [PATCH] New client: Remove debugging code.

---
 client_prototype.py | 8 --------
 1 file changed, 8 deletions(-)

diff --git a/client_prototype.py b/client_prototype.py
index b19f50c..181468d 100644
--- a/client_prototype.py
+++ b/client_prototype.py
@@ -189,10 +189,6 @@ def read_into_message_queue(string):
     if string[-1] is not "\n":
         new_open_end = True
     new_messages = string.splitlines()
-    logfile = open("log", "a")
-    logfile.write(str(new_messages) + "\n")
-    logfile.flush()
-    logfile.close()
     if message_queue["open_end"]:
         message_queue["messages"][-1] = message_queue["messages"][-1] + new_messages[0]
         del new_messages[0]
@@ -275,10 +271,6 @@ except:
     print("SOMETHING WENT WRONG IN UNEXPECTED WAYS")
     raise
 finally:
-    logfile = open("log", "a")
-    logfile.write(str(message_queue))
-    logfile.flush()
-    logfile.close()
     if "file_out" in io:
         io["file_out"].close()
     if "file_in" in io:
-- 
2.30.2