leds/logging.py
2020-11-07 22:28:58 -05:00

8 lines
No EOL
114 B
Python

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