This commit is contained in:
Tanaes 2022-02-05 12:37:23 -05:00
parent cd1e07957d
commit 8ca88394f1

View File

@ -13,7 +13,7 @@ class Output(object):
def __init__(self):
self.active = False
self.load_libs()
log.warning('Active: %s' % self.active)
if self.active:
log.info("Trying to initialize displays")
try:
@ -21,7 +21,7 @@ class Output(object):
config.time_disp['pins'])
self.time_disp.show('TIME')
except NameError:
log.info("Couldn't initialize time display")
log.warning("Couldn't initialize time display")
self.time_disp = False
try: