leds/logging.py

8 lines
113 B
Python
Raw Normal View History

2020-11-07 04:12:10 +00:00
debug_statements = True
def debug(msg):
if debug_statements:
print(msg)
def info(msg):
print(msg)