summaryrefslogtreecommitdiff
path: root/log.py
diff options
context:
space:
mode:
authorFlorian Jung <flo@windfisch.org>2015-08-10 01:21:51 +0200
committerFlorian Jung <flo@windfisch.org>2015-08-10 01:21:51 +0200
commit63b1ba02ed3c2c648176c1003b87bdbe4f040822 (patch)
tree0c58e6345dfecdee6bb02a11798677956cb2a143 /log.py
parent847357fdefe3925f67824c5ec2f5a8d3c191843e (diff)
split into files. refactor ALL teh thingz!!1
Diffstat (limited to 'log.py')
-rw-r--r--log.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/log.py b/log.py
new file mode 100644
index 0000000..f707b2d
--- /dev/null
+++ b/log.py
@@ -0,0 +1,6 @@
+logging = False
+
+def log(string):
+ if logging:
+ print(string)
+