leds/logger.py
2020-11-09 01:40:36 -05:00

11 lines
119 B
Python

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