leds/logging.py

8 lines
114 B
Python
Raw Normal View History

2020-11-08 03:28:58 +00:00
debug_statements = False
2020-11-07 04:12:10 +00:00
def debug(msg):
if debug_statements:
print(msg)
def info(msg):
print(msg)