# HG changeset patch # User drewp@bigasterisk.com # Date 2017-06-10 23:32:27 # Node ID ae9f5ac1a48be8c88c588c217bf0b1c9a6166c73 # Parent 50267ea8c67588ca356249e3c03c45bf1ccca7bb sequencer logging Ignore-this: 1ec02885f6c28015576b3b00116afa00 diff --git a/light9/effect/sequencer.py b/light9/effect/sequencer.py --- a/light9/effect/sequencer.py +++ b/light9/effect/sequencer.py @@ -170,6 +170,7 @@ class Sequencer(object): def compileGraph(self): """rebuild our data from the graph""" log.info('compileGraph start') + t1 = time.time() g = self.graph sharedEffectOutputs = {} @@ -178,7 +179,7 @@ class Sequencer(object): self.notes[song] = [] for note in g.objects(song, L9['note']): self.notes[song].append(Note(g, note, effecteval, sharedEffectOutputs)) - log.info('compileGraph done') + log.info('compileGraph done %.2f ms', 1000 * (time.time() - t1)) @stats.update.time() def update(self):