diff options
author | Florian Jung <flo@windfisch.org> | 2015-08-10 01:21:51 +0200 |
---|---|---|
committer | Florian Jung <flo@windfisch.org> | 2015-08-10 01:21:51 +0200 |
commit | 63b1ba02ed3c2c648176c1003b87bdbe4f040822 (patch) | |
tree | 0c58e6345dfecdee6bb02a11798677956cb2a143 /log.py | |
parent | 847357fdefe3925f67824c5ec2f5a8d3c191843e (diff) |
split into files. refactor ALL teh thingz!!1
Diffstat (limited to 'log.py')
-rw-r--r-- | log.py | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -0,0 +1,6 @@ +logging = False + +def log(string): + if logging: + print(string) + |