# HG changeset patch # User drewp@bigasterisk.com # Date 2013-06-10 19:57:59 # Node ID e7d5f008b2facb6e6fa4cbf39e978eb3497bd749 # Parent 9ed01a562288bb56c01898b425c9d36a2800c3a7 push some subterm logging to debug Ignore-this: aaf413d177f48ee23497c8848fc571cf diff --git a/bin/curvecalc b/bin/curvecalc --- a/bin/curvecalc +++ b/bin/curvecalc @@ -222,19 +222,19 @@ class Main(object): newList = [] for st in set(self.graph.objects(song, L9['subterm'])): - log.info("song %s has subterm %s", song, st) + log.debug("song %s has subterm %s", song, st) term = Subterm(self.graph, st, self.songSubtermsContext(), self.curveset) newList.append(term) self.currentSubterms[:] = newList master = self.wtree.get_object("subterms") - log.info("removing subterm widgets") + log.debug("removing subterm widgets") [master.remove(c) for c in master.get_children()] for term in self.currentSubterms: add_one_subterm(term, self.curveset, master) master.show_all() - log.info("%s table children showing" % len(master.get_children())) + log.debug("%s table children showing" % len(master.get_children())) def refreshTheme(self): gtk.rc_reparse_all()