diff bin/curvecalc @ 917:e7d5f008b2fa

push some subterm logging to debug Ignore-this: aaf413d177f48ee23497c8848fc571cf
author drewp@bigasterisk.com
date Mon, 10 Jun 2013 19:57:59 +0000
parents 9ed01a562288
children 183e3afea4cc
line wrap: on
line diff
--- 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()