changeset 1259:16e68041e675

debug on effectloop Ignore-this: ae4c2f6b391b9bc98bf7a0e10b0e986c
author drewp@bigasterisk.com
date Sat, 13 Jun 2015 21:54:24 +0000
parents 4088c98b5b10
children d5986337516f
files light9/effecteval/effectloop.py
diffstat 1 files changed, 3 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/light9/effecteval/effectloop.py	Sat Jun 13 17:48:41 2015 +0000
+++ b/light9/effecteval/effectloop.py	Sat Jun 13 21:54:24 2015 +0000
@@ -113,10 +113,13 @@
         try:
             with self.stats.sendLevels.time():
                 if self.currentSong is not None:
+                    log.debug('allEffectOutputs')
                     with self.stats.evals.time():
                         outputs = self.allEffectOutputs(self.estimatedSongTime())
+                    log.debug('combineOutputs')
                     combined = self.combineOutputs(outputs)
                     self.logLevels(t1, combined)
+                    log.debug('sendOutput')
                     with self.stats.sendOutput.time():
                         yield self.sendOutput(combined)