leds/logging.py

8 lines
114 B
Python

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