leds/logger.py

11 lines
119 B
Python

debug_statements = False
def debug(msg):
if debug_statements:
print(msg)
def info(msg):
print(msg)