# HG changeset patch # User drewp@bigasterisk.com # Date 1370894279 0 # Node ID e7d5f008b2facb6e6fa4cbf39e978eb3497bd749 # Parent 9ed01a562288bb56c01898b425c9d36a2800c3a7 push some subterm logging to debug Ignore-this: aaf413d177f48ee23497c8848fc571cf diff -r 9ed01a562288 -r e7d5f008b2fa bin/curvecalc --- a/bin/curvecalc Mon Jun 10 19:57:42 2013 +0000 +++ b/bin/curvecalc Mon Jun 10 19:57:59 2013 +0000 @@ -222,19 +222,19 @@ 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()