leds/logger.py
2020-11-09 01:38:02 -05:00

10 lines
118 B
Python

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