summary refs log tree commit diff stats
path: root/code/debug.py
diff options
context:
space:
mode:
Diffstat (limited to 'code/debug.py')
-rw-r--r--code/debug.py12
1 files changed, 0 insertions, 12 deletions
diff --git a/code/debug.py b/code/debug.py
deleted file mode 100644
index 12d5d654..00000000
--- a/code/debug.py
+++ /dev/null
@@ -1,12 +0,0 @@
-# a module to faciliate debuggin
-
-LOGFILE = '/tmp/errorlog'
-
-def log(txt):
-	f = open(LOGFILE, 'a')
-	f.write("r1: ")
-	f.write(str(txt))
-	f.write("\n")
-	f.close()
-
-