aboutsummaryrefslogtreecommitdiff
path: root/LightInstallation.py
diff options
context:
space:
mode:
Diffstat (limited to 'LightInstallation.py')
-rw-r--r--LightInstallation.py7
1 files changed, 3 insertions, 4 deletions
diff --git a/LightInstallation.py b/LightInstallation.py
index e594602..b1ad90e 100644
--- a/LightInstallation.py
+++ b/LightInstallation.py
@@ -121,8 +121,8 @@ class LightInstallation(object):
except Exception as inst:
main_log.error('Error importing ' + module+'.'+'.className. Component not\
initialized.')
- main_log.error(str(inst)) #TODO: exception logging
- continue #TODO: verify functions as expected
+ main_log.error(str(inst))
+ continue
args = configGetter.pullArgsFromItem(configItem)
args['parentScope'] = self #TODO: we shouldn't give away scope
#like this, find another way.
@@ -134,7 +134,7 @@ class LightInstallation(object):
#right
except Exception as inst:
main_log.error('Failure while initializing ' + className + ' with ' + str(args))
- main_log.error(str(inst)) #TODO: exception logging
+ main_log.error(str(inst))
return components
@@ -142,7 +142,6 @@ class LightInstallation(object):
return True
def mainLoop(self):
- #self.screen.allOn()
lastLoopTime = clock.time()
refreshInterval = 30
runCount = 2000