leds/logger.py

11 lines
119 B
Python
Raw Permalink Normal View History

2020-11-09 01:40:36 -05:00
debug_statements = False
2020-11-06 23:12:10 -05:00
2020-11-08 23:15:31 -05:00
2020-11-06 23:12:10 -05:00
def debug(msg):
if debug_statements:
print(msg)
2020-11-08 23:15:31 -05:00
2020-11-06 23:12:10 -05:00
def info(msg):
2020-11-08 23:15:31 -05:00
print(msg)